aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2025-12-26 23:01:13 +0100
committerMartin Fischer <martin@push-f.com>2025-12-26 23:01:47 +0100
commit7714d339e0e3c55a824dd09375973639aa2fed6c (patch)
tree8a022c0ca6415c71f48ef299039c4c4fcd720d9f /nixos
parent3498b31257e07876d5442cb15ed35ed822aea4fa (diff)
tweak(ev): exclude files larger than 500MiB in media backup
I want to transcode large video files before backing them up.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/hosts/ev/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/hosts/ev/default.nix b/nixos/hosts/ev/default.nix
index 5d6de93..d267ab0 100644
--- a/nixos/hosts/ev/default.nix
+++ b/nixos/hosts/ev/default.nix
@@ -201,7 +201,7 @@ in
];
timerConfig = { OnCalendar = "00:30"; };
pruneOpts = ["--keep-daily 30" "--keep-weekly 8"];
- extraBackupArgs = ["--skip-if-unchanged"];
+ extraBackupArgs = ["--skip-if-unchanged" "--exclude-larger-than 500M"];
progressFps = 0.0166; # once per minute
};
};