Beacon installer ISO (Tailscale auto-join + SSH) #2
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The box is headless on a VLAN with no route to the local LAN. Installing with the stock ISO means monitor and keyboard at the machine, and once on the isolated VLAN the installer cannot be reached from the desk — a stock ISO never joins the tailnet.
Approach: custom installer ISO — installer/default.nix stacked on nixpkgs' installation-cd-minimal.nix (the pattern the NixOS manual documents): hostname ai-coding-box-installer, tailscale with a baked pre-auth key (gitignored secrets/ file; world-readable inside the ISO store — accepted, revoked post-install), extraUpFlags --ssh + --advertise-tags=tag:ai-box, agent-pi user with passwordless sudo, sshd fallback with an authorized pubkey. The flake gains nixosConfigurations.installer and packages.x86_64-linux.iso. Verify: nix flake check, then nix build .#iso with a dummy key. Closes via the feat/installer-beacon PR.