diff options
Diffstat (limited to '')
-rw-r--r-- | modules/services/backup/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/backup/default.nix b/modules/services/backup/default.nix index 6324a27..4e7fc23 100644 --- a/modules/services/backup/default.nix +++ b/modules/services/backup/default.nix @@ -88,7 +88,7 @@ in services.restic.backups.host = { # Take care of included and excluded files paths = cfg.paths; - extraBackupArgs = [ "--verbose=1" ] + extraBackupArgs = [ "--verbose=1" "--compression=max" ] ++ lib.optional (builtins.length cfg.exclude != 0) excludeArg; # Take care of creating the repository if it doesn't exist initialize = true; |