aboutsummaryrefslogtreecommitdiff
path: root/hosts/copenhagen
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/copenhagen')
-rw-r--r--hosts/copenhagen/configuration.nix1
-rw-r--r--hosts/copenhagen/hardware-configuration.nix4
2 files changed, 2 insertions, 3 deletions
diff --git a/hosts/copenhagen/configuration.nix b/hosts/copenhagen/configuration.nix
index 3aaf862..f1b1438 100644
--- a/hosts/copenhagen/configuration.nix
+++ b/hosts/copenhagen/configuration.nix
@@ -9,7 +9,6 @@
nix.settings.experimental-features = [ "nix-command" "flakes" ];
- fileSystems."/persist".neededForBoot = true;
environment.persistence."/persist/system" = {
hideMounts = true;
directories = [
diff --git a/hosts/copenhagen/hardware-configuration.nix b/hosts/copenhagen/hardware-configuration.nix
index 63596c0..853c51d 100644
--- a/hosts/copenhagen/hardware-configuration.nix
+++ b/hosts/copenhagen/hardware-configuration.nix
@@ -35,8 +35,8 @@
fileSystems = {
"/" = { fsType = "zfs"; device = "zpool/root"; };
"/home" = { fsType = "zfs"; device = "zpool/home"; };
- "/persist" = { fsType = "zfs"; device = "zpool/persist"; };
- "/secrets" = { fsType = "zfs"; device = "zpool/secrets"; };
+ "/persist" = { fsType = "zfs"; device = "zpool/persist"; neededForBoot = true; };
+ "/secrets" = { fsType = "zfs"; device = "zpool/secrets"; neededForBoot = true; };
"/nix" = { fsType = "zfs"; device = "zpool/nix"; };
"/boot" = { fsType = "vfat"; device = "/dev/disk/by-uuid/DF61-E3BD"; };