infrastructure

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 6a720a54844dcacd9203d77ac7317f293e8e65f5
parent 27c63ec76dbd06ef2f0103c966de721c7c545245
Author: Silas Brack <silasbrack@gmail.com>
Date:   Sun, 12 Apr 2026 17:10:54 +0200

fix: add poseison IP to gaia known_hosts

Diffstat:
Mhosts/helios.nix | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/hosts/helios.nix b/hosts/helios.nix @@ -360,6 +360,7 @@ script = '' mkdir -p /var/lib/gitea-runner/default/.ssh ${pkgs.openssh}/bin/ssh-keyscan -H 46.62.150.48 >> /var/lib/gitea-runner/default/.ssh/known_hosts 2>/dev/null || true + ${pkgs.openssh}/bin/ssh-keyscan -H 188.166.127.72 >> /var/lib/gitea-runner/default/.ssh/known_hosts 2>/dev/null || true chmod 644 /var/lib/gitea-runner/default/.ssh/known_hosts ''; };