From 8c2bfa6fcac0b3e1796483a56c9f77e0313a1f70 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Wed, 5 Mar 2025 09:18:17 +0100 Subject: [PATCH] ssh.nix: remove accepted public keys again --- modules/services/ssh.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/services/ssh.nix b/modules/services/ssh.nix index 23ee248..0731e20 100644 --- a/modules/services/ssh.nix +++ b/modules/services/ssh.nix @@ -4,10 +4,10 @@ in { options.modules.programs.ssh.enable = mkEnableOption "ssh"; config = { programs.ssh.startAgent = true; - programs.ssh.pubkeyAcceptedKeyTypes = [ - "ssh-rsa" - "ecdsa-sha2-nistp521" - ]; + # programs.ssh.pubkeyAcceptedKeyTypes = [ + # "ssh-rsa" + # "ecdsa-sha2-nistp521" + # ]; services.openssh = { enable = true;