From 81a9bf586120d4489ea9873961d2665a7ddcc97e Mon Sep 17 00:00:00 2001 From: zimward <96021122+zimward@users.noreply.github.com> Date: Sat, 24 Aug 2024 21:59:22 +0200 Subject: [PATCH] doc: remove mention of key type --- nixos/doc/manual/configuration/ssh.section.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/doc/manual/configuration/ssh.section.md b/nixos/doc/manual/configuration/ssh.section.md index 8754e3d9ccaf..b5d2bf09a61f 100644 --- a/nixos/doc/manual/configuration/ssh.section.md +++ b/nixos/doc/manual/configuration/ssh.section.md @@ -12,12 +12,12 @@ By default, root logins using a password are disallowed. They can be disabled entirely by setting [](#opt-services.openssh.settings.PermitRootLogin) to `"no"`. -You can declaratively specify authorised RSA/DSA public keys for a user +You can declaratively specify authorised public keys for a user as follows: ```nix { users.users.alice.openssh.authorizedKeys.keys = - [ "ssh-dss AAAAB3NzaC1kc3MAAACBAPIkGWVEt4..." ]; + [ "ssh-ed25519 AAAAB3NzaC1kc3MAAACBAPIkGWVEt4..." ]; } ```