From 984828714140afd9f132ae6043aa1035b5ec0d4a Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 5 May 2024 08:44:51 -0400 Subject: [PATCH] Infini-DL360: make /etc/ssh needed for boot --- hosts/Infini-DL360/disks.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/Infini-DL360/disks.nix b/hosts/Infini-DL360/disks.nix index 3379ac4..d98ca95 100644 --- a/hosts/Infini-DL360/disks.nix +++ b/hosts/Infini-DL360/disks.nix @@ -7,6 +7,8 @@ in { boot.kernelPackages = lib.mkForce config.boot.zfs.package.latestCompatibleLinuxPackages; + persist.directories = [ "/etc/ssh" ]; + disko.devices = { nodev."/" = { fsType = "tmpfs"; @@ -60,4 +62,5 @@ in fileSystems."/persist".neededForBoot = true; fileSystems."/storage".neededForBoot = true; + fileSystems."/etc/ssh".neededForBoot = true; }