19 lines
308 B
Nix
19 lines
308 B
Nix
|
{
|
||
|
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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|