This commit is contained in:
Leah Amelia Chen 2025-11-07 13:37:15 +09:00 committed by GitHub
commit 8e825fb690
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 67 additions and 0 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";
};
}