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