13 lines
164 B
Nix
13 lines
164 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.tailscale = {
|
|
enable = true;
|
|
|
|
extraUpFlags = [
|
|
"--advertise-exit-node"
|
|
"--advertise-routes=192.168.2.0/24"
|
|
];
|
|
};
|
|
}
|