diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-25 21:54:37 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-25 21:54:37 -0700 |
| commit | ae199bff07285e01acd5fb37db9256916cdbf7ec (patch) | |
| tree | 6ac91ab76bc8dae0d805e3877b045f854d9c1f8f /hosts/phoenix/hardware.nix | |
| parent | 7a2ebaa16f0d0e32ac4d33d78c89dfa0e91da926 (diff) | |
phoenix: fix required fs mounts
Diffstat (limited to 'hosts/phoenix/hardware.nix')
| -rw-r--r-- | hosts/phoenix/hardware.nix | 10 |
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"; }; }; |