nixos/modules/crans/ssh.nix

12 lines
117 B
Nix

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