restic/system: Fix QoS enabling logic

This commit is contained in:
Simon Bruder 2024-08-21 01:53:31 +02:00
parent b0898643fb
commit d03e463a3a
Signed by: simon
GPG key ID: 347FF8699CDA0776

View file

@ -87,7 +87,7 @@ in
type = lib.types.nullOr lib.types.int;
default = null;
};
qos = (lib.mkEnableOption "QoS marking (DSCP AF12) of outgoing packets") // { default = !(lib.isNull cfg.uploadLimit); };
qos = (lib.mkEnableOption "QoS marking (DSCP AF12) of outgoing packets") // { default = !(isNull cfg.uploadLimit); };
prune = lib.mkEnableOption "pruning";
};
@ -119,13 +119,14 @@ in
"--tag system"
"--verbose"
] ++ lib.optional (cfg.uploadLimit != null) "--limit-upload=${toString cfg.uploadLimit}";
} // (lib.optionalAttrs cfg.qos {
backupPrepareCommand = ''
${pkgs.nftables}/bin/nft -f ${qosRules}
'';
backupCleanupCommand = ''
${pkgs.nftables}/bin/nft delete table inet restic
'';
};
});
systemd.services."restic-backups-system".serviceConfig = {
"Nice" = 10;