From 7714d339e0e3c55a824dd09375973639aa2fed6c Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Fri, 26 Dec 2025 23:01:13 +0100 Subject: tweak(ev): exclude files larger than 500MiB in media backup I want to transcode large video files before backing them up. --- nixos/hosts/ev/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }; }; -- cgit v1.3.1