12 lines
195 B
Nix
12 lines
195 B
Nix
|
|
{ ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
services.syncthing.relay = {
|
||
|
|
enable = true;
|
||
|
|
providedBy = "ellie";
|
||
|
|
pools = []; # Don't join public relay pools
|
||
|
|
};
|
||
|
|
|
||
|
|
networking.firewall.allowedTCPPorts = [ 22067 ];
|
||
|
|
}
|