Files
nixos-configs/hosts/manatee/modules/tailscale/default.nix
T

12 lines
227 B
Nix

{ ... }:
{
# If an exit node is used, set:
# tailscale set --exit-node-allow-lan-access
services.tailscale.enable = true;
networking.firewall = {
checkReversePath = "loose";
allowedUDPPorts = [ 41641 ];
};
}