1
Fork 0
satellite/hosts/nixos/tethys/services/syncthing.nix
prescientmoon c0f12e1bf0
Reduce pass to libsecret service (and more)
- Reduce all pass integrations but that of a local libsecret service
- Fix "kanata" typos in the readme
- Fix typo in emergency script
- Remove dns level blocklisting for twitter (it's blocked using leechblock now)
- Add keybind for a certain auto form script to hyprland (it's commented out for now)
2024-03-04 11:33:59 +01:00

20 lines
448 B
Nix

let commonVersioning = {
type = "staggered";
params = {
cleanInterval = "3600"; # 1 hour in seconds
maxAge = "604800"; # 14 days in seconds.
};
};
in
{
imports = [ ../../common/optional/services/syncthing.nix ];
services.syncthing.settings.folders = {
"stellar-sanctum" = {
path = "/home/adrielus/projects/stellar-sanctum/";
devices = [ "enceladus" "lapetus" ];
versioning = commonVersioning;
};
};
}