From c7b194481cffb12c34b2feb3561608b4eee53523 Mon Sep 17 00:00:00 2001 From: Marie Ramlow Date: Tue, 4 Mar 2025 01:00:43 +0100 Subject: [PATCH] marie-nas: fix broken zpool.cache This caused zfs to write to disks every 300s even without activity See https://github.com/openzfs/zfs/issues/9734 --- hosts/marie-nas/state.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/marie-nas/state.nix b/hosts/marie-nas/state.nix index 5a0bda4c..4a73faf9 100644 --- a/hosts/marie-nas/state.nix +++ b/hosts/marie-nas/state.nix @@ -30,7 +30,7 @@ { file = "/etc/ssh/ssh_host_ed25519_key.pub"; inInitrd = true; configureParent = true; how = "symlink"; } { file = "/etc/ssh/ssh_host_rsa_key"; mode = "0700"; inInitrd = true; configureParent = true; how = "symlink"; } { file = "/etc/ssh/ssh_host_rsa_key.pub"; inInitrd = true; configureParent = true; how = "symlink"; } - { file = "/etc/zfs/zpool.cache"; inInitrd = true; how = "symlink"; } + { file = "/etc/zfs/zpool.cache"; inInitrd = true; configureParent = true; how = "symlink"; } ]; }; };