nixos/modules/server/ssh.nix
2025-03-22 21:31:51 -04:00

10 lines
192 B
Nix

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