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
commit 22e8de2729
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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";
};
}