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 {