1
0
Fork 0

nixos: Harden ssh a bit

This commit is contained in:
Daniel Kempkens 2022-07-31 21:23:28 +02:00
parent c35c48911b
commit cb1f090b97

View file

@ -1,3 +1,7 @@
{
services.openssh.enable = true;
services.openssh = {
enable = true;
passwordAuthentication = false;
kbdInteractiveAuthentication = false;
};
}