niksos/hosts/niks/ssh/default.nix

11 lines
143 B
Nix
Raw Normal View History

2023-07-20 13:33:32 +02:00
{
config,
pkgs,
...
}: {
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
}