Add various changes
This commit is contained in:
parent
00734e521f
commit
f58e968756
10 changed files with 77 additions and 76 deletions
|
@ -1,13 +1,14 @@
|
|||
{ ... }:
|
||||
{ config, ... }:
|
||||
{
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
permitRootLogin = "no";
|
||||
passwordAuthentication = false;
|
||||
challengeResponseAuthentication = false;
|
||||
hostKeys = [ { "path" = "/etc/ssh/ssh_host_ed25519_key"; "type" = "ed25519"; } ];
|
||||
hostKeys = [ { path = config.secrets.files.ssh_host_ed25519_key.file; type = "ed25519"; } ];
|
||||
kexAlgorithms = [ "curve25519-sha256" "curve25519-sha256@libssh.org" ];
|
||||
macs = [ "hmac-sha2-512-etm@openssh.com" "hmac-sha2-512-etm@openssh.com" "umac-128-etm@openssh.com" ];
|
||||
|
||||
};
|
||||
|
||||
programs.ssh.knownHosts = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue