snowflake/hosts/ame/services/syncthing.nix
notohh f934aa56b9
flake.nix: remove nixos-cosmic
ame: disable cosmic, add syncthing
2025-04-09 05:24:05 -04:00

11 lines
244 B
Nix

_: {
services.syncthing = {
enable = true;
openDefaultPorts = true;
dataDir = "/home/notoh/sync";
configDir = "/home/notoh/.config/syncthing";
guiAddress = "localhost:8384";
user = "notoh";
group = "users";
};
}