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