nixos/zfs: Default autoscrub interval to monthly

This commit is contained in:
Jonathan Davies 2024-05-03 13:41:51 +01:00
parent 1f60d45b21
commit 5b671b7fc8

View File

@ -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)`.