From 73b65af6d6aa1872e54bee8c26f017479a1f8f6d Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Sun, 31 May 2026 02:40:51 +0000 Subject: [PATCH] nix: add all 3 root SSH keys from current orchestrator VM Includes the operator key (mfowler), the claude-vm key, and the cc-ci-sandbox key. Co-Authored-By: Claude Sonnet 4.6 --- nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix b/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix index f2c173e..5ca2b8a 100644 --- a/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix +++ b/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix @@ -14,8 +14,10 @@ settings.PermitRootLogin = "yes"; }; - # Root SSH access (the cc-ci-root-ed25519 key used by all loops tooling). + # Root SSH access — all keys from the current orchestrator VM's /root/.ssh/authorized_keys. users.users.root.openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOk8NaeBdPbS2gfUvbny8h0AkZlVjGYHzx4QPXSJ38gd claude@claude-vm" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJVlfoLBPseQ9fA9534KmRg2KWcksKZGzAJIpHJ2JpsI mfowler.email@protonmail.com" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAcyTGb/wVgdhg5oBCZZvBaR1RuUQRY/3WHnOQpNDCsp claude-cc-ci-sandbox@20260526" ]; networking.useDHCP = true;