summary refs log tree commit diff stats
path: root/system/prefect.nix
diff options
context:
space:
mode:
authorAlan Pearce2024-06-25 13:06:30 +0200
committerAlan Pearce2024-06-25 13:06:30 +0200
commita5e5dc737a4ef5eb9b882e194bc11c378ca11676 (patch)
tree746cadda6919ad5ac78dfd92d13065b48c0bcdcb /system/prefect.nix
parent6251530a807833ebf1d16c8a73884942c7490639 (diff)
downloadnixfiles-a5e5dc737a4ef5eb9b882e194bc11c378ca11676.tar.lz
nixfiles-a5e5dc737a4ef5eb9b882e194bc11c378ca11676.tar.zst
nixfiles-a5e5dc737a4ef5eb9b882e194bc11c378ca11676.zip
prefect: ignore tailscale routes
Diffstat (limited to 'system/prefect.nix')
-rw-r--r--system/prefect.nix8
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";