infrastructure/modules/base/ssh.nix

31 lines
702 B
Nix
Raw Normal View History

2023-04-12 12:47:22 +00:00
{
services.openssh = {
enable = true;
openFirewall = true;
ports = [ 222 ];
settings = {
PasswordAuthentication = false;
PermitRootLogin = "prohibit-password";
2023-04-16 20:36:14 +00:00
Ciphers = [
"chacha20-poly1305@openssh.com"
"aes256-gcm@openssh.com"
"aes256-ctr"
"aes128-gcm@openssh.com"
];
Macs = [
"umac-128-etm@openssh.com"
"hmac-sha2-256-etm@openssh.com"
"hmac-sha2-512-etm@openssh.com"
"hmac-sha2-512"
];
KexAlgorithms = [
"curve25519-sha256@libssh.org"
"diffie-hellman-group16-sha512"
"diffie-hellman-group18-sha512"
"curve25519-sha256"
];
2023-04-12 12:47:22 +00:00
};
};
}