home-server/services/syncthing-relay.nix

12 lines
195 B
Nix
Raw Permalink Normal View History

2026-02-24 18:34:22 -08:00
{ ... }:
{
services.syncthing.relay = {
enable = true;
providedBy = "ellie";
pools = []; # Don't join public relay pools
};
networking.firewall.allowedTCPPorts = [ 22067 ];
}