File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ nixpkgs.lib.nixosSystem {
15
15
modules = [
16
16
../../nixos
17
17
./hardware-configuration.nix
18
- ./disko-config.nix
18
+ # ./disko-config.nix
19
19
disko . nixosModules . disko
20
20
home-manager . nixosModules . home-manager
21
21
{
Original file line number Diff line number Diff line change 9
9
10
10
services . xserver . videoDrivers = [ "amdgpu" ] ;
11
11
12
+ fileSystems . "/" = {
13
+ device = "/dev/disk/by-uuid/784ff1be-5b0e-4b59-af05-bf03cb580b42" ;
14
+ fsType = "ext4" ;
15
+ } ;
16
+
17
+ fileSystems . "/boot" = {
18
+ device = "/dev/disk/by-uuid/B589-AD30" ;
19
+ fsType = "vfat" ;
20
+ options = [
21
+ "fmask=0077"
22
+ "dmask=0077"
23
+ ] ;
24
+ } ;
25
+
26
+ swapDevices = [
27
+ { device = "/dev/disk/by-uuid/94617a47-e3be-4a19-9e70-1264c383b719" ; }
28
+ ] ;
29
+
12
30
boot = {
13
31
initrd = {
14
32
availableKernelModules = [
You can’t perform that action at this time.
0 commit comments