{ lib, ... }: with lib; let ciphers = [ "chacha20-poly1305@openssh.com" "aes256-gcm@openssh.com" "aes128-gcm@openssh.com" ]; sigAlgorithms = [ "ssh-ed25519-cert-v01@openssh.com" "ssh-ed25519" ]; kexAlgorithms = [ "sntrup761x25519-sha512@openssh.com" "curve25519-sha256" "curve25519-sha256@libssh.org" ]; macs = [ "umac-128-etm@openssh.com" "hmac-sha2-512-etm@openssh.com" "hmac-sha2-256-etm@openssh.com" ]; in { programs.ssh = { inherit ciphers kexAlgorithms macs; hostKeyAlgorithms = sigAlgorithms; pubkeyAcceptedKeyTypes = sigAlgorithms; }; services.openssh = { hostKeys = mkDefault [ { type = "ed25519"; path = "/etc/keys/ssh_host_ed25519_key"; } ]; settings = { PermitRootLogin = "prohibit-password"; PasswordAuthentication = false; KbdInteractiveAuthentication = false; AuthenticationMethods = "publickey"; Ciphers = ciphers; Macs = macs; KexAlgorithms = kexAlgorithms; HostKeyAlgorithms = concatStringsSep "," sigAlgorithms; PubkeyAcceptedAlgorithms = concatStringsSep "," sigAlgorithms; # Remove stale Unix sockets when forwarding StreamLocalBindUnlink = true; }; }; }