From af0388b907c3c072a03603760873e2533798529d Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 4 May 2021 01:45:33 +0200 Subject: [PATCH] borg-backup: save space when pruning --- services/borg-backup.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/borg-backup.nix b/services/borg-backup.nix index 866a2af..23300a4 100644 --- a/services/borg-backup.nix +++ b/services/borg-backup.nix @@ -65,7 +65,7 @@ in { }; environment.BORG_RSH = "ssh -i /root/borgbackup/ssh_key"; extraCreateArgs = "--stats --list"; - extraPruneArgs = "--stats --list"; + extraPruneArgs = "--stats --list --save-space"; doInit = true; compression = "auto,zstd"; startAt = "daily";