diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-12-25 11:49:29 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-12-25 11:49:29 -0600 |
| commit | 6f9b285bdb935fbab99978307034c7458ddc9d09 (patch) | |
| tree | eabc76d2194de6959ab5d77e13dbc44cbaac26e7 /modules/services/nixos/tailscale.nix | |
| parent | 87763bcc7d13e92b96c5743507795fba4444eabe (diff) | |
asdf
Diffstat (limited to 'modules/services/nixos/tailscale.nix')
| -rw-r--r-- | modules/services/nixos/tailscale.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/services/nixos/tailscale.nix b/modules/services/nixos/tailscale.nix index f60e48e..f39fc27 100644 --- a/modules/services/nixos/tailscale.nix +++ b/modules/services/nixos/tailscale.nix @@ -10,12 +10,13 @@ in services.tailscale = { enable = true; useRoutingFeatures = "both"; - extraSetFlags = ["--ssh=true"]; }; + networking.firewall = { checkReversePath = "loose"; trustedInterfaces = ["tailscale0"]; allowedUDPPorts = [config.services.tailscale.port]; }; + environment.systemPackages = [pkgs.tailscale]; } |
