13 lines
251 B
Nix
13 lines
251 B
Nix
{
|
|
imports = [ ../../common/optional/syncthing.nix ];
|
|
|
|
networking.firewall.allowedTCPPorts = [ 8384 ];
|
|
|
|
services.syncthing = {
|
|
devices.lapetus.id = "";
|
|
guiAddress = "0.0.0.0:8384"; # TODO: put this behind nginx
|
|
|
|
folders = { };
|
|
};
|
|
}
|