From f11d8cc902e72b38f4becdd6fac724b7ee8ea4c3 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Tue, 3 Oct 2023 16:34:47 +0300 Subject: [PATCH] feat(ssh): Allow ecdsa-sha2-nistp256 keys --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 428f182..d71f83d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -69,7 +69,7 @@ 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; [