system: zfs: lower scrub interval to monthly

Best would be bi-weekly, but systemd does not support such an interval
(yet).

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2024-06-03 13:04:25 +02:00
parent 6fb9beb383
commit 5bc7793319
Signed by: c8h4
GPG key ID: 73D5E7FDEE3DE49A

View file

@ -8,7 +8,10 @@
environment.systemPackages = with pkgs; [ zfs ];
services.zfs = {
autoScrub.enable = true;
autoScrub = {
enable = true;
interval = "monthly";
};
autoSnapshot = {
enable = true;
frequent = 4;