From 5fb39104e2e6debfe38a6fe454c6b456aeaa960e Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Mon, 9 Jun 2025 17:04:53 +0100 Subject: [PATCH] distributed-builds: Use Tailscale DNS --- services/distributed-builds.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/distributed-builds.nix b/services/distributed-builds.nix index ec5f001..025a0f0 100644 --- a/services/distributed-builds.nix +++ b/services/distributed-builds.nix @@ -35,7 +35,7 @@ in nix.buildMachines = (optional (elem "kalessin" cfg.builders) { - hostName = "100.108.149.33"; # TODO: get tailscale internal DNS up + hostName = "kalessin.birdsong.network"; sshUser = "remotebuild"; sshKey = cfg.keyFile; systems = [ "aarch64-linux" ]; @@ -43,7 +43,7 @@ in supportedFeatures = [ "big-parallel" ]; }) ++ (optional (elem "kilgharrah" cfg.builders) { - hostName = "100.92.127.92"; # TODO: get tailscale internal DNS up + hostName = "kilgharrah.birdsong.network"; sshUser = "remotebuild"; sshKey = cfg.keyFile; systems = [ "x86_64-linux" ];