mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
- 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.
12 lines
402 B
Nix
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.
|
|
'')
|
|
];
|
|
}
|