openssh: upgrade to v9.3p1

progresses #20
This commit is contained in:
Fiscal Velvet Poet 2023-06-02 10:00:45 +10:00
parent 63b9735106
commit b08e13c2a0
Signed by: fiscalvelvetpoet
GPG key ID: D8EBFD58B023BD47

View file

@ -7,9 +7,6 @@
}: {
services.openssh = {
enable = true; # Enable the OpenSSH daemon.
permitRootLogin = "prohibit-password";
kbdInteractiveAuthentication = false;
passwordAuthentication = false;
openFirewall = true;
hostKeys = [
{
@ -17,5 +14,10 @@
type = "ed25519";
}
];
settings = {
KbdInteractiveAuthentication = false;
PasswordAuthentication = false;
PermitRootLogin = "prohibit-password";
};
};
}