@cryptotaxi247 / infra / commits / b2942d8c

Specify ssh host key algorithms for some reason

Without, the host's SSH was trying to compare the ecdsa-sha2-nistp256 keys to ed25519, and even though they're still listed, it isn't anymore.

Eelco Dolstra committed Apr 26, 2019 at 18:52 UTC b2942d8c9644229527c4ce57f431b06652af9393
1 file changed +1
delft/hydra.nix
+1
@@ -77,6 +77,7 @@ in
77 systemd.services.hydra-queue-runner.wantedBy = mkForce [];
78 systemd.services.hydra-queue-runner.requires = mkForce [];
79
80 + programs.ssh.hostKeyAlgorithms = [ "ssh-ed25519" "ssh-rsa" "ecdsa-sha2-nistp256" ];
81 programs.ssh.extraConfig = mkAfter
82 ''
83 ServerAliveInterval 120