nixos-config/linux/nebula/tailscale.nix

9 lines
161 B
Nix
Raw Normal View History

2023-11-27 21:44:04 -08:00
{ ... }: {
services.tailscale = {
enable = true;
extraUpFlags = [ "--advertise-exit-node" ];
port = 25555;
useRoutingFeatures = "both";
};
}