nixos/profiles/common/ssh.nix
2025-09-25 23:28:10 +02:00

9 lines
99 B
Nix

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