10 lines
250 B
Nix
10 lines
250 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Linux Hardened Kernel (Sicherheit)
|
|
# - Zusätzliche Sicherheits-Patches
|
|
# - Speicherschutz, Exploit-Mitigation
|
|
# - Langsamer als Standard/Zen (Security > Performance)
|
|
boot.kernelPackages = pkgs.linuxPackages_hardened;
|
|
}
|