nixfiles/services/sshd/default.nix

11 lines
156 B
Nix

{pkgs, ...}:
{
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = true;
PermitRootLogin = "yes";
};
};
}