lab-infra/machines/photo01/openssh.nix

11 lines
122 B
Nix

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