marleyos/modules/nixos/services/openssh/default.nix

19 lines
308 B
Nix
Raw Normal View History

2025-02-18 04:40:41 +00:00
{
lib,
config,
...
}: let
cfg = config.marleyos.services.openssh;
in {
options.marleyos.services.openssh.enable = lib.mkEnableOption "openssh";
config = lib.mkIf cfg.enable {
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "no";
};
};
};
}