nixos-config/config/services/syncthing.nix

8 lines
184 B
Nix

_: {
services.syncthing = {
enable = true;
guiAddress = "[::]:8384";
};
networking.firewall.allowedTCPPorts = [22000];
networking.firewall.allowedUDPPorts = [22000];
}