dotfiles/nixos/boxes/vpsfree1/syncthing-relay.nix

15 lines
258 B
Nix
Raw Normal View History

2022-12-19 09:09:08 +00:00
{
config,
pkgs,
inputs,
lib,
...
}: {
networking.firewall.allowedTCPPorts = [22067 22070];
2022-07-22 22:38:32 +01:00
services.syncthing.relay = {
enable = true;
listenAddress = "vpsfree1.cyplo.github.beta.tailscale.net";
2022-12-19 09:09:08 +00:00
pools = [""]; # private relay
2022-07-22 22:38:32 +01:00
};
}