puter/hosts/vessel/syncthing.nix
2024-08-18 23:15:16 +02:00

13 lines
244 B
Nix

let
guiPort = 8384;
in {
services.syncthing = {
enable = true;
systemService = true;
openDefaultPorts = true;
guiAddress = "127.0.0.1:${builtins.toString guiPort}";
};
networking.firewall.allowedTCPPorts = [guiPort];
}