nixos/clients/quadraticserver/ssh.nix
2025-03-22 20:03:26 -04:00

10 lines
192 B
Nix

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