1
0
Fork 0
forked from DGNum/lab-infra
lab-infra/machines/photo01/openssh.nix

11 lines
122 B
Nix

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