summaryrefslogtreecommitdiff
path: root/hosts/sif/hw.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/sif/hw.nix')
-rw-r--r--hosts/sif/hw.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/hosts/sif/hw.nix b/hosts/sif/hw.nix
index 050ae53f..4e4b3649 100644
--- a/hosts/sif/hw.nix
+++ b/hosts/sif/hw.nix
@@ -3,12 +3,12 @@
3{ 3{
4 fileSystems = { 4 fileSystems = {
5 "/boot" = 5 "/boot" =
6 { device = "LABEL=boot"; 6 { label = "boot";
7 fsType = "vfat"; 7 fsType = "vfat";
8 options = [ "fmask=0022" "dmask=0022" ]; 8 options = [ "fmask=0022" "dmask=0022" ];
9 }; 9 };
10 "/.bcachefs" = 10 "/.bcachefs" =
11 { device = "LABEL=sif"; 11 { label = "sif";
12 fsType = "bcachefs"; 12 fsType = "bcachefs";
13 neededForBoot = true; 13 neededForBoot = true;
14 }; 14 };
@@ -58,7 +58,7 @@
58 }; 58 };
59 59
60 swapDevices = [ 60 swapDevices = [
61 { device = "/dev/disk/by-label/swap"; } 61 { label = "swap"; }
62 ]; 62 ];
63 63
64 nix.settings.max-jobs = 12; 64 nix.settings.max-jobs = 12;