feat(nixos): OpenSSH

This commit is contained in:
punkfairie 2025-02-17 20:40:41 -08:00
parent 38975ba714
commit 8b184727e2
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -0,0 +1,18 @@
{
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";
};
};
};
}