add ignore patterns to syncthing

This commit is contained in:
2025-11-03 20:35:18 -06:00
parent 225d102cea
commit 9b758fdd96
2 changed files with 21 additions and 3 deletions

View File

@@ -50,7 +50,26 @@ in {
maxAge = "0";
};
};
ignorePatterns = [
"// syncthing"
"/.versions"
"/.versions/**"
"/.stversions"
"/.stversions/**"
"// macos system junk"
"(?d).DS_Store"
"(?d).AppleDouble"
"(?d).LSOverride"
"(?d)Icon?"
"(?d)._*"
"(?d).Spotlight-V100"
"(?d).Trashes"
"(?d).fseventsd"
"(?d).metadata_never_index"
"(?d).com.apple.timemachine.donotpresent"
"(?d).com.apple.*"
"(?d)~*.tmp"
];
};
};
options = {
@@ -69,6 +88,5 @@ in {
group = "blake";
};
};
};
}