From 0a5ea690b5580310be37aaa2e3c374c67f9f4033 Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Tue, 24 Feb 2026 17:53:46 +0100 Subject: [PATCH] zerotier: use IP addresses from infra --- clan/network.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/clan/network.nix b/clan/network.nix index 8c9e3d0..8c06bd1 100644 --- a/clan/network.nix +++ b/clan/network.nix @@ -2,13 +2,11 @@ { clan.inventory.instances.zerotier = { roles.controller.machines.crocus = { }; - roles.moon.machines.crocus = { - settings = { - stableEndpoints = [ - "116.203.18.122" - "2a01:4f8:1c1e:e415::/64" - ]; - }; + roles.moon.machines.crocus.settings = { + stableEndpoints = [ + self.infra.machines.crocus.ipv4 + self.infra.machines.crocus.ipv6 + ]; }; roles.peer.tags."all" = { }; };