about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJonathan Davies <jpds@protonmail.com>2024-05-03 13:41:51 +0100
committerJonathan Davies <jpds@protonmail.com>2024-05-03 13:41:51 +0100
commit5b671b7fc8ba3c315fb584f75c3fb61c09ebf582 (patch)
treede4854473b26e813a437e78ff19fab4331b1a8dc /nixos
parent1f60d45b215180d329d820155887c129db893c2f (diff)
nixos/zfs: Default autoscrub interval to monthly
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/tasks/filesystems/zfs.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix
index 2c749d45d7a15..9d65319f348d1 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)`.