nixos/clients/quadraticserver/ssh.nix

10 lines
178 B
Nix

{
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = true;
AllowUsers = ["quadradical"];
PermitRootLogin = "no";
};
};
}