1
0
Fork 0

Dimaga: add weekly RAID array scrub

This commit is contained in:
Aires 2024-08-27 11:45:42 -04:00
parent ccbbcc59f4
commit b7bc6f0458

View file

@ -51,6 +51,25 @@ in
}; };
}; };
# Automatically scrub the RAID array weekly
systemd.services."raid-scrub" = {
description = "Periodically scrub RAID volumes for errors.";
serviceConfig = {
Type = "oneshot";
User = "root";
};
script = "echo check > /sys/block/md0/md/sync_action";
};
systemd.timers."raid-scrub" = {
description = "Periodically scrub RAID volumes for errors.";
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "weekly";
Persistent = true;
Unit = "raid-scrub.service";
};
};
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
# Detect keyboard as "internal" so we can automatically disable the touchpad while typing # Detect keyboard as "internal" so we can automatically disable the touchpad while typing