summaryrefslogtreecommitdiffstats
path: root/nixos/modules/profiles/hardened.nix
blob: 070fac9a34650ee627a88ff5f3a018c1a3b0640d (plain)
1
2
3
4
5
6
7
8
9
10
11
# This profile included most standard hardening options enabled by default,
# which may have impacted system stability, feature availability, and performance.

{ lib, ... }:
{
  imports = [
    (lib.mkRemovedOptionModule [ "profiles" "hardened" ] ''
      The hardened profile has been removed, see the backward incompatibilities section of the 26.05 release notes for more information.
    '')
  ];
}