From 5b671b7fc8ba3c315fb584f75c3fb61c09ebf582 Mon Sep 17 00:00:00 2001 From: Jonathan Davies Date: Fri, 3 May 2024 13:41:51 +0100 Subject: [PATCH] nixos/zfs: Default autoscrub interval to monthly --- nixos/modules/tasks/filesystems/zfs.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index 2c749d45d7a1..9d65319f348d 100644 --- a/nixos/modules/tasks/filesystems/zfs.nix +++ b/nixos/modules/tasks/filesystems/zfs.nix @@ -447,9 +447,9 @@ in enable = mkEnableOption "periodic scrubbing of ZFS pools"; interval = mkOption { - default = "Sun, 02:00"; + default = "monthly"; type = types.str; - example = "daily"; + example = "quarterly"; description = '' Systemd calendar expression when to scrub ZFS pools. See {manpage}`systemd.time(7)`.