commit 25b29f84d1035bf4c09a4aa483427dde1bf91fc4 parent 656f10c914087d155946e5e3b6a745869957e533 Author: MTRNord <mtrnord1@gmail.com> Date: Sat, 26 Aug 2023 21:54:09 +0200 Let it auto choose for the tunnel Diffstat:
| M | nixos/worker-1/configuration.nix | | | 9 | +++++---- |
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix @@ -515,9 +515,7 @@ export all; }; area 100.64.0.0 { - interface "tailscale0" { - type ptp; - }; + interface "tailscale0"; interface "floating1" { type nonbroadcast; }; @@ -535,7 +533,10 @@ export all; }; area 100.64.0.0 { - interface "tailscale0", "floating1"; + interface "tailscale0"; + interface "floating1" { + type nonbroadcast; + }; }; } '';