nixos-config/linux/nebula/tailscale.nix
2023-11-27 21:44:04 -08:00

8 lines
161 B
Nix

{ ... }: {
services.tailscale = {
enable = true;
extraUpFlags = [ "--advertise-exit-node" ];
port = 25555;
useRoutingFeatures = "both";
};
}