From 3e9c3bc91bb81f0d767003c249f4b1d1c4f6d634 Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Fri, 14 Jul 2023 06:50:14 +0100 Subject: [PATCH] Try to force tailscale network to ipv4. Doesn't seem to work. --- hosts/common/nomad.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/common/nomad.nix b/hosts/common/nomad.nix index 83ae718..a03b760 100644 --- a/hosts/common/nomad.nix +++ b/hosts/common/nomad.nix @@ -17,7 +17,10 @@ in client = { enabled = true; server_join.retry_join = servers; - host_network.tailscale.interface = "tailscale0"; + host_network.tailscale = { + interface = "tailscale0"; + cidr = "100.64.0.0/10"; + }; }; server = {