niksos/hosts/niks/ssh/default.nix
2023-07-20 13:33:32 +02:00

10 lines
143 B
Nix

{
config,
pkgs,
...
}: {
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
}