8 lines
161 B
Nix
8 lines
161 B
Nix
{ ... }: {
|
|
services.tailscale = {
|
|
enable = true;
|
|
extraUpFlags = [ "--advertise-exit-node" ];
|
|
port = 25555;
|
|
useRoutingFeatures = "both";
|
|
};
|
|
}
|