summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2024-05-10 02:09:59 +0200
committerGitHub <noreply@github.com>2024-05-10 02:09:59 +0200
commit7c520d4070f8864309774b943049dcefb7cf65ae (patch)
tree487e4446042bf78fae65bbaf7d1ea70902588330 /nixos
parent04f0aed442617230f74b09868fff684b2217e8e0 (diff)
parent5b671b7fc8ba3c315fb584f75c3fb61c09ebf582 (diff)
Merge pull request #287494 from jpds/zfs-autoscrub-monthly-default
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 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)`.