diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-25 21:54:30 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-25 21:54:30 -0700 |
| commit | 7a2ebaa16f0d0e32ac4d33d78c89dfa0e91da926 (patch) | |
| tree | 1db38a337c5988016bab41c55886c9fbc938bd23 /hosts/copenhagen | |
| parent | 9d038f97388985f6f0be54e6a4810aed1b1be529 (diff) | |
copenhagen: fix required fs mounts
Diffstat (limited to 'hosts/copenhagen')
| -rw-r--r-- | hosts/copenhagen/hardware.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hosts/copenhagen/hardware.nix b/hosts/copenhagen/hardware.nix index 8ba2b70..7c0a1f3 100644 --- a/hosts/copenhagen/hardware.nix +++ b/hosts/copenhagen/hardware.nix @@ -38,11 +38,11 @@ }; 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; }; - "/secrets" = { fsType = "zfs"; device = "zpool/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"; }; + "/secrets" = { fsType = "zfs"; neededForBoot = true; device = "zpool/secrets"; }; "/boot" = { fsType = "vfat"; device = "/dev/disk/by-uuid/DF61-E3BD"; }; |