nix-config/hosts/modules/common/openssh.nix

8 lines
98 B
Nix

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