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:
parent
836f4a2848
commit
50f8db87eb
|
@ -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
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue