style: fix some statix issues

This commit is contained in:
Felix Schröter 2022-09-28 15:27:19 +02:00
parent d16258e1ab
commit 9965f73c74
Signed by: felschr
GPG key ID: 671E39E6744C807D
4 changed files with 6 additions and 6 deletions
modules

View file

@ -5,7 +5,7 @@ with lib;
{
config = {
systemd.services = mapAttrs' (name: backup:
nameValuePair "restic-backups-${name}" ({
nameValuePair "restic-backups-${name}" {
serviceConfig = {
CPUWeight = 25;
MemoryHigh = "50%";
@ -14,6 +14,6 @@ with lib;
IOSchedulingClass = "idle";
IOSchedulingPriority = 7;
};
})) config.services.restic.backups;
}) config.services.restic.backups;
};
}