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:
Harald Hoyer 2026-05-13 09:28:20 +02:00
parent b9cfdc99a7
commit 4ce7bcf354

View file

@ -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 = {