nixos-config/modules/restic.nix

27 lines
439 B
Nix
Raw Permalink Normal View History

2024-05-26 16:45:38 +02:00
{
config,
lib,
pkgs,
...
}:
2022-05-11 19:02:41 +02:00
with lib;
{
config = {
2024-05-26 16:45:38 +02:00
systemd.services = mapAttrs' (
name: backup:
2022-09-28 15:27:19 +02:00
nameValuePair "restic-backups-${name}" {
2022-05-11 19:02:41 +02:00
serviceConfig = {
CPUWeight = 25;
MemoryHigh = "50%";
MemoryMax = "75%";
IOWeight = 50;
IOSchedulingClass = "idle";
IOSchedulingPriority = 7;
};
2024-05-26 16:45:38 +02:00
}
) config.services.restic.backups;
2022-05-11 19:02:41 +02:00
};
}