dots/modules/network/vpn/tailscale.nix
Nico 0e85f91790 tailscale: set routering to server
allows IP forwarding which is essential when using tailscale as an exit
node
2025-06-02 20:22:58 +10:00

9 lines
193 B
Nix

{ config, lib, pkgs, ... }:
{
services.tailscale.enable = true;
services.tailscale.extraSetFlags = [
"--advertise-exit-node"
];
services.tailscale.useRoutingFeatures = "server";
}