lab-infra/machines/photo01/openssh.nix

11 lines
124 B
Nix

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