6 lines
183 B
Nix
6 lines
183 B
Nix
{ config, ... }: {
|
|
services.tailscale.enable = true;
|
|
networking.firewall.checkReversePath = "loose";
|
|
networking.firewall.allowedUDPPorts = [ config.services.tailscale.port ];
|
|
}
|