fix(mx): make tailscale exit-node advertisement actually apply
tailscale set is strict about boolean flags and silently ignores --advertise-exit-node without =true. Result: the tailscaled-set unit ran cleanly but AdvertiseRoutes stayed null. Spell the value out so the flag takes effect.
This commit is contained in:
parent
b9cfdc99a7
commit
4ce7bcf354
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@
|
||||||
services.tailscale = {
|
services.tailscale = {
|
||||||
enable = true;
|
enable = true;
|
||||||
useRoutingFeatures = "server";
|
useRoutingFeatures = "server";
|
||||||
extraSetFlags = [ "--advertise-exit-node" ];
|
extraSetFlags = [ "--advertise-exit-node=true" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
metacfg = {
|
metacfg = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue