snowflake/hosts/tsuki/services/syncthing.nix
2025-03-17 05:32:14 -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";
};
}