restic/system: Limit upload to 1.5M by default

pull/48/head
Simon Bruder 2021-03-08 18:43:48 +01:00
parent 3da67f7576
commit d73da1a131
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 5 additions and 1 deletions

View File

@ -57,6 +57,10 @@ in
type = lib.types.listOf lib.types.str; type = lib.types.listOf lib.types.str;
default = [ ]; default = [ ];
}; };
uploadLimit = lib.mkOption {
type = lib.types.nullOr lib.types.int;
default = 1500;
};
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
@ -81,7 +85,7 @@ in
"--exclude-file=${excludesFile}" "--exclude-file=${excludesFile}"
"--tag system" "--tag system"
"--verbose" "--verbose"
]; ] ++ lib.optional (cfg.uploadLimit != null) "--limit-upload=${toString cfg.uploadLimit}";
}; };
systemd.services."restic-backups-system".serviceConfig = { systemd.services."restic-backups-system".serviceConfig = {