aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-23 21:32:46 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-23 21:32:46 +0200
commita3e62f557a1e4a135e091e7e4cdec22a54848a73 (patch)
tree5f2f893b18d8e981728b8ae48213834690ffe2e1
parentmodules/foot: Make the path regex include the final file (diff)
downloadnixos-config-a3e62f557a1e4a135e091e7e4cdec22a54848a73.zip
hosts/apzu: Try to use the experimental mesa intel xe graphics driverHEADprime
-rw-r--r--hosts/by-name/apzu/hardware.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/hosts/by-name/apzu/hardware.nix b/hosts/by-name/apzu/hardware.nix
index 70b041e7..1d948151 100644
--- a/hosts/by-name/apzu/hardware.nix
+++ b/hosts/by-name/apzu/hardware.nix
@@ -33,6 +33,12 @@
boot = {
kernelModules = ["kvm-intel" "rtw89"];
+ kernelParams = [
+ # Try to use the newer experimental xe driver
+ "i915.force_probe=!9a49"
+ "xe.force_probe=9a49"
+ ];
+
initrd.availableKernelModules = ["xhci_pci" "vmd" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"];
};
}