1
0
Fork 0

Merge branch 'main' of ssh://code.8bitbuddhism.com/aires/nix-configuration

This commit is contained in:
Aires 2024-08-27 11:52:03 -04:00
commit e8da0941fb

View file

@ -51,7 +51,7 @@ in
};
};
# Automatically scrub the RAID array weekly
# Automatically scrub the RAID array monthly
systemd.services."raid-scrub" = {
description = "Periodically scrub RAID volumes for errors.";
serviceConfig = {
@ -64,7 +64,7 @@ in
description = "Periodically scrub RAID volumes for errors.";
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "weekly";
OnCalendar = "monthly";
Persistent = true;
Unit = "raid-scrub.service";
};