summaryrefslogtreecommitdiff
path: root/ymir-hw.nix
diff options
context:
space:
mode:
Diffstat (limited to 'ymir-hw.nix')
-rw-r--r--ymir-hw.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/ymir-hw.nix b/ymir-hw.nix
index cbb0d307..3ddf1035 100644
--- a/ymir-hw.nix
+++ b/ymir-hw.nix
@@ -14,22 +14,25 @@
14 boot.extraModulePackages = [ ]; 14 boot.extraModulePackages = [ ];
15 15
16 fileSystems."/" = 16 fileSystems."/" =
17 { device = "/dev/disk/by-uuid/e2d0b455-76a2-4e57-aff0-98d1fc2f7806"; 17 {
18 device = "/dev/disk/by-label/ymir-root";
18 fsType = "ext4"; 19 fsType = "ext4";
19 }; 20 };
20 21
21 fileSystems."/boot" = 22 fileSystems."/boot" =
22 { device = "/dev/disk/by-uuid/6e0ba525-114b-4998-952f-c859cf1471d6"; 23 {
24 device = "/dev/disk/by-label/ymir-boot";
23 fsType = "ext2"; 25 fsType = "ext2";
24 }; 26 };
25 27
26 fileSystems."/home" = 28 fileSystems."/home" =
27 { device = "/dev/disk/by-uuid/4284cea9-9a3f-4ee3-8295-ebffa8f6622c"; 29 {
30 device = "/dev/disk/by-label/ymir-home";
28 fsType = "ext4"; 31 fsType = "ext4";
29 }; 32 };
30 33
31 swapDevices = 34 swapDevices =
32 [ { device = "/dev/disk/by-uuid/7957964d-aa60-44c4-9c59-9ae21fbca985"; } 35 [ { device = "/dev/disk/by-label/ymir-swap"; }
33 ]; 36 ];
34 37
35 nix.maxJobs = 2; 38 nix.maxJobs = 2;