nixos-config/modules/ssh.nix

7 lines
102 B
Nix

{
services.openssh = {
enable = true;
settings.PermitRootLogin = "without-password";
};
}