nixos-config/modules/restic.nix

20 lines
419 B
Nix
Raw Normal View History

2022-05-11 19:02:41 +02:00
{ config, lib, pkgs, ... }:
with lib;
{
config = {
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;
};
2022-09-28 15:27:19 +02:00
}) config.services.restic.backups;
2022-05-11 19:02:41 +02:00
};
}