From 04d40c5bbd35a5d86215f5679d09e4cf24ab85f0 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 3 Dec 2025 16:33:16 +0100 Subject: [PATCH] fix(x1): Use latest kernel packages for x1 system Switched to using the latest kernel packages for the x1 system by removing the comment from the kernelPackages line and setting it to lib.mkOverride 0 pkgs.linuxPackages_latest. This ensures the system uses the most recent kernel modules and features while maintaining consistency with other configuration changes. The change aligns with recent system updates and package management improvements. --- systems/x86_64-linux/x1/hardware-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/x1/hardware-configuration.nix b/systems/x86_64-linux/x1/hardware-configuration.nix index 3f621a5..4609e70 100644 --- a/systems/x86_64-linux/x1/hardware-configuration.nix +++ b/systems/x86_64-linux/x1/hardware-configuration.nix @@ -25,7 +25,7 @@ "sd_mod" ]; initrd.kernelModules = [ ]; - #kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest; + kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest; kernelModules = [ "kvm-intel" "amdgpu"