From 43311f66f20c67d20185f0c718ef1f78df4b6a37 Mon Sep 17 00:00:00 2001 From: Kopatz <7265381+Kropatz@users.noreply.github.com> Date: Fri, 21 Feb 2025 09:09:27 +0100 Subject: [PATCH] add exclude paths --- modules/misc/backup.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/misc/backup.nix b/modules/misc/backup.nix index 24b4d5d..67dea4a 100644 --- a/modules/misc/backup.nix +++ b/modules/misc/backup.nix @@ -22,7 +22,7 @@ in }; excludePaths = lib.mkOption { type = types.listOf types.str; - default = [ "**/Cache" "**/.cache" "**/__pycache__" "**/node_modules" "**/venv" ]; + default = [ "**/Cache" "**/.cache" "**/__pycache__" "**/node_modules" "**/venv" "*.o" "*.out"]; description = "paths to exclude from the backup"; }; excludePathsRemote = lib.mkOption {