diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2024-07-30 18:15:35 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2024-07-30 18:15:35 +0200 |
commit | 051ad4bbb24ad4cc7b9fc71c254a7ae3c54544ea (patch) | |
tree | b11893124878f687510985230f330de98cbad62b | |
parent | 98ac32bf38e623941f453dad2475fd25270e19f3 (diff) | |
download | nixos-051ad4bbb24ad4cc7b9fc71c254a7ae3c54544ea.tar nixos-051ad4bbb24ad4cc7b9fc71c254a7ae3c54544ea.tar.gz nixos-051ad4bbb24ad4cc7b9fc71c254a7ae3c54544ea.tar.bz2 nixos-051ad4bbb24ad4cc7b9fc71c254a7ae3c54544ea.tar.xz nixos-051ad4bbb24ad4cc7b9fc71c254a7ae3c54544ea.zip |
...
-rw-r--r-- | hosts/sif/hw.nix | 6 |
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; |