From 1a44b2baacee6ded654eaa7fd4026e24e1b1890a Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Tue, 17 Mar 2026 22:03:03 +0000 Subject: [PATCH] kilgharrah: Use kernel 6.18 For some reason, using kernel 6.12.76 (the current on 25.11 at time of writing), the xe module crashes on load with a null pointer dereference. This didn't happen on 6.12.74. I can't place the regression, but 6.18.17 seems to work fine. --- hosts/kilgharrah/hardware.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/kilgharrah/hardware.nix b/hosts/kilgharrah/hardware.nix index 0375aba..81248ee 100644 --- a/hosts/kilgharrah/hardware.nix +++ b/hosts/kilgharrah/hardware.nix @@ -5,6 +5,7 @@ hardware.cpu.intel.updateMicrocode = true; services.fwupd.enable = true; + boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_18; # 6.12 (current default for 25.11) seems to make the xe module crash on load? needs more investigation services.xserver.videoDrivers = [ "modesetting" ]; hardware.graphics = { enable = true;