diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-12-19 15:57:15 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-12-19 15:57:15 -0600 |
| commit | 26533470d5eebca67519c0a0ce797bedfb6a5e25 (patch) | |
| tree | d8e815a19a95a8651947ed784629b908a76fd1c1 /modules/services/nixos/tailscale.nix | |
| parent | 7fc4bb05905697e6a43fa3805da45768ea9a9858 (diff) | |
last of merge changes
Diffstat (limited to 'modules/services/nixos/tailscale.nix')
| -rw-r--r-- | modules/services/nixos/tailscale.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/services/nixos/tailscale.nix b/modules/services/nixos/tailscale.nix index 3fbd691..7b6cf08 100644 --- a/modules/services/nixos/tailscale.nix +++ b/modules/services/nixos/tailscale.nix @@ -11,5 +11,10 @@ in enable = true; useRoutingFeatures = "both"; }; + networking.firewall = { + checkReversePath = "loose"; + trustedInterfaces = ["tailscale0"]; + allowedUDPPorts = [config.services.tailscale.port]; + }; environment.systemPackages = [pkgs.tailscale]; } |
