From b964d0d6686bcc131a942da65daa757c286eb521 Mon Sep 17 00:00:00 2001 From: K900 Date: Wed, 19 Feb 2025 19:53:15 +0300 Subject: [PATCH] Revert "nixos/profiles/hardened: don't enable by default" --- nixos/modules/profiles/hardened.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/modules/profiles/hardened.nix b/nixos/modules/profiles/hardened.nix index f9526b91222c..dc3bf597cd4b 100644 --- a/nixos/modules/profiles/hardened.nix +++ b/nixos/modules/profiles/hardened.nix @@ -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 = [