nix-flakes/modules/mizukios/features/remote/ssh.nix
2026-07-05 13:36:31 +09:00

9 lines
129 B
Nix

{ ... }:
{
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "prohibit-password";
};
};
}