2024-08-29 09:14:27 -04:00
|
|
|
{ lib, config, ... }:
|
|
|
|
let
|
|
|
|
cfg = config.aux.system.raid;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
|
|
|
aux.system.raid = {
|
|
|
|
enable = lib.mkEnableOption "Enables RAID support.";
|
2024-09-17 10:42:09 -04:00
|
|
|
storage = {
|
|
|
|
enable = lib.mkEnableOption "Enables support for the storage array.";
|
|
|
|
mailAddr = lib.mkOption {
|
|
|
|
default = "";
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Address to email in case of issues.";
|
|
|
|
example = "admin@example.com";
|
|
|
|
};
|
|
|
|
keyFile = lib.mkOption {
|
|
|
|
default = "";
|
2024-09-18 10:15:06 -04:00
|
|
|
type = lib.types.str;
|
2024-09-17 10:42:09 -04:00
|
|
|
description = "Path to the key file to use to auto-unlock the array.";
|
2024-09-18 10:15:06 -04:00
|
|
|
example = "/home/user/storage.key";
|
2024-09-17 10:42:09 -04:00
|
|
|
};
|
|
|
|
};
|
2024-08-29 09:14:27 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkMerge [
|
|
|
|
(lib.mkIf cfg.enable { boot.swraid.enable = true; })
|
2024-09-06 15:26:40 -04:00
|
|
|
(lib.mkIf cfg.storage.enable {
|
2024-08-29 09:14:27 -04:00
|
|
|
aux.system.raid.enable = true;
|
|
|
|
boot.swraid.mdadmConf = ''
|
|
|
|
ARRAY /dev/md/Sapana metadata=1.2 UUID=51076daf:efdb34dd:bce48342:3b549fcb
|
2024-09-17 10:42:09 -04:00
|
|
|
MAILADDR ${cfg.storage.mailAddr}
|
2024-08-29 09:14:27 -04:00
|
|
|
'';
|
2024-09-08 11:58:56 -04:00
|
|
|
|
2024-09-08 13:17:40 -04:00
|
|
|
# Auto-unlock RAID array with a key file
|
2024-09-18 10:15:06 -04:00
|
|
|
environment.etc."crypttab" = lib.mkIf (cfg.storage.keyFile != "") {
|
|
|
|
text = "storage /dev/md/Sapana ${cfg.storage.keyFile} nofail,keyfile-timeout=5s";
|
|
|
|
};
|
2024-09-08 13:17:40 -04:00
|
|
|
fileSystems."/storage" = {
|
|
|
|
device = "/dev/mapper/storage";
|
|
|
|
# Keep booting even if the array fails to unlock
|
2024-09-08 13:42:01 -04:00
|
|
|
options = [ "nofail" ];
|
2024-09-08 13:17:40 -04:00
|
|
|
};
|
|
|
|
|
2024-09-08 11:58:56 -04:00
|
|
|
# Automatically scrub the array monthly
|
|
|
|
systemd = {
|
|
|
|
services."raid-scrub" = {
|
|
|
|
description = "Periodically scrub RAID volumes for errors.";
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "oneshot";
|
|
|
|
User = "root";
|
|
|
|
};
|
|
|
|
script = "echo check > /sys/block/md127/md/sync_action";
|
|
|
|
};
|
|
|
|
timers."raid-scrub" = {
|
|
|
|
description = "Periodically scrub RAID volumes for errors.";
|
|
|
|
wantedBy = [ "timers.target" ];
|
|
|
|
timerConfig = {
|
|
|
|
OnCalendar = "monthly";
|
|
|
|
Persistent = true;
|
|
|
|
Unit = "raid-scrub.service";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-08-29 09:14:27 -04:00
|
|
|
})
|
|
|
|
];
|
|
|
|
}
|