feat(nixos): OpenSSH
This commit is contained in:
parent
38975ba714
commit
8b184727e2
1 changed files with 18 additions and 0 deletions
18
modules/nixos/services/openssh/default.nix
Normal file
18
modules/nixos/services/openssh/default.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue