raito-shared-public-infra/modules/tailscale.nix

6 lines
183 B
Nix
Raw Normal View History

2023-06-05 17:46:42 +00:00
{ config, ... }: {
services.tailscale.enable = true;
networking.firewall.checkReversePath = "loose";
networking.firewall.allowedUDPPorts = [ config.services.tailscale.port ];
}