zaphyra's git: nixfiles

zaphyra's nixfiles

commit ef6598b88e5081ad1e8a01ac187a58bcbcdb3f9c
parent 87460b3fea6ef17169457fd911499ebccc77089e
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Wed, 22 Jul 2026 21:29:56 +0200

nixos/common/services/openssh: add `ecdsa-sha2-nistp256` to allowed pubkey-formats :<
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/nixosModules/common/services/openssh.nix b/nixosModules/common/services/openssh.nix
@@ -102,6 +102,7 @@ in
             "sk-ssh-ed25519-cert-v01@openssh.com"
             "ssh-ed25519"
             "sk-ssh-ed25519@openssh.com"
+            "ecdsa-sha2-nistp256"
           ]
           ++ (lib.optionals cfg.enableRSASupport [ "rsa-sha2-512" ])
         );