some security updates

This commit is contained in:
Glen Goodwin 2023-09-21 13:50:00 -04:00
parent cd74c7b0d4
commit 1722c0cf66
9 changed files with 144 additions and 11 deletions

24
hosts/thinkpad/kernel.nix Normal file
View file

@ -0,0 +1,24 @@
{ config, pkgs, stdenv, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_hardened;
boot.kernelParams = [
# Disable slab merging to prevent heap exploitation
"slab_nomerge"
# Enable zeroing memory during allocation and free time
"init_on_alloc=1"
"init_on_free=1"
# Randomize page allocator freelists
"page_alloc.shuffle=1"
# Mitigations
"pti=on"
"vsyscall=none"
"debugfs=off"
"oops=panic"
# Enable lockdown LSM
"lockdown=confidentiality"
];
}