Skip to content

Commit

Permalink
Specify ssh host key algorithms for some reason
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
edolstra committed Apr 26, 2019
1 parent 2185d92 commit b2942d8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions delft/hydra.nix
Expand Up @@ -77,6 +77,7 @@ in
systemd.services.hydra-queue-runner.wantedBy = mkForce [];
systemd.services.hydra-queue-runner.requires = mkForce [];

programs.ssh.hostKeyAlgorithms = [ "ssh-ed25519" "ssh-rsa" "ecdsa-sha2-nistp256" ];
programs.ssh.extraConfig = mkAfter
''
ServerAliveInterval 120
Expand Down

0 comments on commit b2942d8

Please sign in to comment.