From 0cae58b515cd16d8c160d89108dabdba0f4c45ef Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 8 Aug 2024 09:59:42 +0200 Subject: [PATCH] feat: use latest kernel packages Added configuration to use the latest kernel packages for boot. This change ensures the system benefits from the most recent updates and security patches. --- systems/x86_64-linux/t15/hardware-configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/systems/x86_64-linux/t15/hardware-configuration.nix b/systems/x86_64-linux/t15/hardware-configuration.nix index 2732dbc..623a683 100644 --- a/systems/x86_64-linux/t15/hardware-configuration.nix +++ b/systems/x86_64-linux/t15/hardware-configuration.nix @@ -28,6 +28,7 @@ "uas" ]; boot.initrd.kernelModules = [ ]; + boot.kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest; boot.kernelParams = [ "lockdown=confidentiality" "intel_iommu=on"