diff options
| -rw-r--r-- | hosts/c-pc/hardware.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hosts/c-pc/hardware.nix b/hosts/c-pc/hardware.nix index 3b4a417..3495127 100644 --- a/hosts/c-pc/hardware.nix +++ b/hosts/c-pc/hardware.nix @@ -40,12 +40,12 @@ }; fileSystems = { - "/" = { fsType = "zfs"; device = "zpool/root"; }; - "/nix" = { fsType = "zfs"; device = "zpool/nix"; }; - "/home" = { fsType = "zfs"; device = "zpool/home"; }; - "/persist" = { fsType = "zfs"; device = "zpool/persist"; neededForBoot = true; }; - "/persist/secure" = { 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/nix"; }; + "/home" = { fsType = "zfs"; neededForBoot = true; device = "zpool/home"; }; + "/persist" = { fsType = "zfs"; neededForBoot = true; device = "zpool/persist"; }; + "/persist/secure" = { 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/12CE-A600"; }; |