feat(ssh): Allow ecdsa-sha2-nistp256 keys

This commit is contained in:
Inex Code 2023-10-03 16:34:47 +03:00
parent 6c07cc024b
commit 23155b3c96

View file

@ -73,7 +73,7 @@ in
openFirewall = false;
};
programs.ssh = {
pubkeyAcceptedKeyTypes = [ "ssh-ed25519" "ssh-rsa" ];
pubkeyAcceptedKeyTypes = [ "ssh-ed25519" "ssh-rsa" "ecdsa-sha2-nistp256" ];
hostKeyAlgorithms = [ "ssh-ed25519" "ssh-rsa" ];
};
environment.systemPackages = with pkgs; [