srx-platform-nix/modules/roles/core/openssh.nix

8 lines
116 B
Nix
Raw Permalink Normal View History

2024-07-04 13:47:18 +02:00
{ lib, ... }:
{
services.openssh = {
enable = true;
settings.PermitRootLogin = lib.mkDefault "no";
};
}