mirror of
https://github.com/michaelthomson0797/nixos-server.git
synced 2026-03-21 19:17:23 +00:00
13 lines
310 B
Nix
13 lines
310 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.tailscale = {
|
|
enable = true;
|
|
useRoutingFeatures = "server";
|
|
extraSetFlags = [ "--advertise-exit-node" "--advertise-routes=10.0.0.0/8,192.168.18.0/24" ];
|
|
extraUpFlags = [ "--advertise-exit-node" "--advertise-routes=10.0.0.0/8,192.168.18.0/24" ];
|
|
};
|
|
}
|