Files
nixpkgs/nixos/modules/profiles/hardened.nix
Nico Felbinger 18a45284a2 nixos/profiles: remove hardened
- It lacks a consistent and transparent baseline or standard,
- It may introduce unexpected breakage or degrade performance without clear benefit,
- It is difficult to manage user expectations, especially since the implications of enabling it are not always obvious,
- and as multiple contributors have noted, it is often more of a “grab bag” of settings than a cohesive security policy.
2026-03-21 09:25:12 +10:00

12 lines
402 B
Nix

# 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.
'')
];
}