Files
2026-06-16 20:55:00 +02:00

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;
}