blob: 7a964417489014f9772c0d5c2a0dd07a5b8ed1a4 (
plain) (
tree)
|
|
{...}: {
services.openssh = {
enable = true;
allowSFTP = false;
openFirewall = false;
settings = {
PermitRootLogin = "no";
};
hostKeys = [
{
path = "/srv/var/lib/sshd/ssh_host_ed25519_key";
rounds = 1000;
type = "ed25519";
}
];
};
}
|