feat(ssh): add default module with enable+harden

This commit is contained in:
2026-03-11 14:49:18 +01:00
parent a49be3040f
commit b9bdd36a05

10
modules/ssh/default.nix Normal file
View File

@@ -0,0 +1,10 @@
{ lib, ... }:
{
imports = [ ./hardened-openssh.nix ];
config.services.openssh = {
enable = lib.mkDefault true;
harden = lib.mkDefault true;
};
}