prefect: ignore tailscale routes
Alan Pearce alan@alanpearce.eu
Tue, 25 Jun 2024 13:06:30 +0200
1 files changed, 7 insertions(+), 1 deletions(-)
jump to
M system/prefect.nix → system/prefect.nix
@@ -148,7 +148,13 @@ llmnr = "false"; dnssec = "true"; }; - services.tailscale.enable = true; + services.tailscale = { + enable = true; + extraUpFlags = [ + "--accept-dns=true" + "--accept-routes=false" + ]; + }; system.stateVersion = "23.05";