Revert "nixos/profiles/hardened: don't enable by default"

This commit is contained in:
K900
2025-02-19 19:53:15 +03:00
committed by GitHub
parent 61d804de09
commit b964d0d668

View File

@@ -22,7 +22,10 @@ let
;
in
{
options.profiles.hardened = mkEnableOption "hardened";
options.profiles.hardened = mkEnableOption "hardened" // {
default = true;
example = false;
};
config = mkIf config.profiles.hardened {
meta = {
maintainers = [