srx-platform-nix/modules/roles/core/openssh.nix
Sebastian Wendel b910dc465e first commit
2024-07-04 13:47:18 +02:00

8 lines
116 B
Nix

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