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.
This commit is contained in:
Harald Hoyer 2024-11-27 17:26:15 +01:00
parent 836f4a2848
commit 50f8db87eb

View file

@ -18,10 +18,6 @@ in
home.packages = with pkgs; [ mosh ]; home.packages = with pkgs; [ mosh ];
programs.ssh = { programs.ssh = {
enable = true; enable = true;
extraConfig = ''
Host *
HostKeyAlgorithms +ssh-rsa
'';
}; };
}; };
} }