diff options
author | Alan Pearce | 2024-06-25 13:06:30 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-25 13:06:30 +0200 |
commit | a5e5dc737a4ef5eb9b882e194bc11c378ca11676 (patch) | |
tree | 746cadda6919ad5ac78dfd92d13065b48c0bcdcb /system | |
parent | 6251530a807833ebf1d16c8a73884942c7490639 (diff) | |
download | nixfiles-a5e5dc737a4ef5eb9b882e194bc11c378ca11676.tar.lz nixfiles-a5e5dc737a4ef5eb9b882e194bc11c378ca11676.tar.zst nixfiles-a5e5dc737a4ef5eb9b882e194bc11c378ca11676.zip |
prefect: ignore tailscale routes
Diffstat (limited to 'system')
-rw-r--r-- | system/prefect.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/system/prefect.nix b/system/prefect.nix index 0fc80eb9..864ccc3f 100644 --- a/system/prefect.nix +++ b/system/prefect.nix @@ -148,7 +148,13 @@ dnssec = "true"; }; - services.tailscale.enable = true; + services.tailscale = { + enable = true; + extraUpFlags = [ + "--accept-dns=true" + "--accept-routes=false" + ]; + }; system.stateVersion = "23.05"; |