From 50f8db87eb521585ed1d46ba5cbbdb84d33e437a Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 27 Nov 2024 17:26:15 +0100 Subject: [PATCH] Remove unnecessary SSH rsa key configuration The `HostKeyAlgorithms +ssh-rsa` setting has been removed from the SSH configuration in the default Nix file. This change simplifies the config and helps ensure compatibility with modern security practices. --- modules/home/tools/ssh/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/home/tools/ssh/default.nix b/modules/home/tools/ssh/default.nix index 9c71e6e..03ff06c 100644 --- a/modules/home/tools/ssh/default.nix +++ b/modules/home/tools/ssh/default.nix @@ -18,10 +18,6 @@ in home.packages = with pkgs; [ mosh ]; programs.ssh = { enable = true; - extraConfig = '' - Host * - HostKeyAlgorithms +ssh-rsa - ''; }; }; }