prescientmoon
c0f12e1bf0
- 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)
20 lines
448 B
Nix
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;
|
|
};
|
|
};
|
|
}
|