lab-infra/machines/photo01/openssh.nix

12 lines
122 B
Nix
Raw Normal View History

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