aboutsummaryrefslogtreecommitdiff
path: root/hosts/phoenix/hardware.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2024-07-25 21:54:37 -0700
committerCaroline Larimore <caroline@larimo.re>2024-07-25 21:54:37 -0700
commitae199bff07285e01acd5fb37db9256916cdbf7ec (patch)
tree6ac91ab76bc8dae0d805e3877b045f854d9c1f8f /hosts/phoenix/hardware.nix
parent7a2ebaa16f0d0e32ac4d33d78c89dfa0e91da926 (diff)
phoenix: fix required fs mounts
Diffstat (limited to 'hosts/phoenix/hardware.nix')
-rw-r--r--hosts/phoenix/hardware.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/hosts/phoenix/hardware.nix b/hosts/phoenix/hardware.nix
index 3057c0e..640bfb1 100644
--- a/hosts/phoenix/hardware.nix
+++ b/hosts/phoenix/hardware.nix
@@ -38,11 +38,11 @@
};
fileSystems = {
- "/" = { fsType = "zfs"; device = "zpool/root"; };
- "/nix" = { fsType = "zfs"; device = "zpool/secure/nix"; };
- "/home" = { fsType = "zfs"; device = "zpool/home"; };
- "/persist" = { fsType = "zfs"; device = "zpool/secure/persist"; neededForBoot = true; };
- "/secrets" = { fsType = "zfs"; device = "zpool/secure/secrets"; neededForBoot = true; };
+ "/" = { fsType = "zfs"; neededForBoot = true; device = "zpool/root"; };
+ "/nix" = { fsType = "zfs"; neededForBoot = true; device = "zpool/secure/nix"; };
+ "/home" = { fsType = "zfs"; neededForBoot = true; device = "zpool/home"; };
+ "/persist" = { fsType = "zfs"; neededForBoot = true; device = "zpool/secure/persist"; };
+ "/secrets" = { fsType = "zfs"; neededForBoot = true; device = "zpool/secure/secrets"; };
"/boot" = { fsType = "vfat"; device = "/dev/disk/by-uuid/C48C-5EE1"; };
};