From ae199bff07285e01acd5fb37db9256916cdbf7ec Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Thu, 25 Jul 2024 21:54:37 -0700 Subject: phoenix: fix required fs mounts --- hosts/phoenix/hardware.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'hosts/phoenix') 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"; }; }; -- cgit v1.2.3