Merge pull request #1197 from NixOS/lunar-lake

common/gpu/intel/lunar-lake: enable xe driver
This commit is contained in:
Jörg Thalheim
2024-10-22 21:14:45 +02:00
committed by GitHub
13 changed files with 40 additions and 21 deletions

View File

@@ -0,0 +1,8 @@
{ config, lib, ... }:
{
imports = [ ../. ];
hardware.intelgpu = {
driver = lib.mkIf (lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.8") "xe";
vaapiDriver = "intel-media-driver";
};
}