From af5abfc712ce25bd043271fb903c58b639c4e4c8 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Sun, 23 Jun 2024 15:14:30 +0200 Subject: [PATCH] nachtigall: enable ZFS auto scrub once per month --- hosts/nachtigall/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/nachtigall/configuration.nix b/hosts/nachtigall/configuration.nix index f4d9e1d..324755e 100644 --- a/hosts/nachtigall/configuration.nix +++ b/hosts/nachtigall/configuration.nix @@ -35,6 +35,11 @@ # https://nixos.wiki/wiki/ZFS#declarative_mounting_of_ZFS_datasets systemd.services.zfs-mount.enable = false; + services.zfs.autoScrub = { + enable = true; + pools = [ "root_pool" ]; + }; + # Declarative SSH private key age.secrets."nachtigall-root-ssh-key" = { file = "${flake.self}/secrets/nachtigall-root-ssh-key.age";