blacklist some stuff

This commit is contained in:
Christoph Cullmann 2025-03-30 17:39:21 +02:00
parent 16a3b77766
commit 5d515c04b3
No known key found for this signature in database

View file

@ -70,6 +70,15 @@ in
"net.core.bpf_jit_harden" = 2;
};
# blacklist some stuff
boot.blacklistedKernelModules = [
# hardening
"dccp"
"sctp"
"rds"
"tipc"
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;