lab-infra/machines/photo01/openssh.nix

9 lines
113 B
Nix
Raw Normal View History

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