[NixOS] Disable passward auth for ssh

This commit is contained in:
Ivan Malison 2023-08-07 13:33:41 -06:00
parent 5bc91c20c3
commit fb750e7368

View File

@ -16,5 +16,8 @@
};
};
services.openssh.enable = true;
services.openssh = {
enable = true;
passwordAuthentication = false;
};
}