From 5a56030f6e2abb5eed4528ef8a5470f1466b1dd2 Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Sat, 25 Jul 2026 16:24:13 +1000 Subject: [PATCH] =?UTF-8?q?fix(tailscale):=20rename=20hosts/tailscale-subn?= =?UTF-8?q?et-router=20=E2=86=92=20hosts/tailscale-router?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The directory name was tailscale-subnet-router but networking.hostName was already tailscale-router, causing a mismatch that confused scripts comparing directory paths against actual hostnames. Flake attribute names (linode/proxmox/lxc-tailscale-subnet-router) and .sops.yaml anchors are unchanged — they describe the build type, not the hostname. Co-Authored-By: Claude Sonnet 4.6 --- flake.nix | 6 +++--- .../{tailscale-subnet-router => tailscale-router}/host.nix | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename hosts/{tailscale-subnet-router => tailscale-router}/host.nix (100%) diff --git a/flake.nix b/flake.nix index ab25099..5a03e51 100644 --- a/flake.nix +++ b/flake.nix @@ -96,9 +96,9 @@ proxmox-pxe-boot = mkTarget { platform = "proxmox"; buildType = "pxe-boot"; hostPath = ./hosts/pxe-boot/host.nix; }; lxc-pxe-boot = mkTarget { platform = "lxc"; buildType = "pxe-boot"; hostPath = ./hosts/pxe-boot/host.nix; }; - linode-tailscale-subnet-router = mkTarget { platform = "linode"; buildType = "tailscale-subnet-router"; hostPath = ./hosts/tailscale-subnet-router/host.nix; }; - proxmox-tailscale-subnet-router = mkTarget { platform = "proxmox"; buildType = "tailscale-subnet-router"; hostPath = ./hosts/tailscale-subnet-router/host.nix; }; - lxc-tailscale-subnet-router = mkTarget { platform = "lxc"; buildType = "tailscale-subnet-router"; hostPath = ./hosts/tailscale-subnet-router/host.nix; }; + linode-tailscale-subnet-router = mkTarget { platform = "linode"; buildType = "tailscale-subnet-router"; hostPath = ./hosts/tailscale-router/host.nix; }; + proxmox-tailscale-subnet-router = mkTarget { platform = "proxmox"; buildType = "tailscale-subnet-router"; hostPath = ./hosts/tailscale-router/host.nix; }; + lxc-tailscale-subnet-router = mkTarget { platform = "lxc"; buildType = "tailscale-subnet-router"; hostPath = ./hosts/tailscale-router/host.nix; }; lxc-tor-relay = mkTarget { platform = "lxc"; buildType = "tor-relay"; hostPath = ./hosts/tor-relay/host.nix; }; }; diff --git a/hosts/tailscale-subnet-router/host.nix b/hosts/tailscale-router/host.nix similarity index 100% rename from hosts/tailscale-subnet-router/host.nix rename to hosts/tailscale-router/host.nix -- 2.54.0