This commit is contained in:
Lukas Wurzinger 2024-08-18 20:58:05 +02:00
parent 5c6bb2745d
commit 21c5e76082

View file

@ -1,7 +1,12 @@
{
let
guiPort = 8384;
in {
services.syncthing = {
enable = true;
systemService = true;
openDefaultPorts = true;
guiAddress = "0.0.0.0:${guiPort}";
};
networking.firewall.allowedTCPPorts = [guiPort];
}