Files
old-nixos-dotfiles/system/services/ssh/default.nix

10 lines
113 B
Nix

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