common/cpu/intel: init arrow-lake

In terms of configs, Arrow Lake (Core Ultra 200H series) is essentially
the same as Lunar Lake (Core Ultra 200V series).
This commit is contained in:
Leah Amelia Chen 2025-07-08 17:56:08 +00:00
parent 497ae1357f
commit 5655a6c32e
No known key found for this signature in database
3 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
./cpu-only.nix
../../../gpu/intel/arrow-lake
];
}

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";
};
}