mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-09 20:16:10 +01:00
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:
parent
497ae1357f
commit
5655a6c32e
3 changed files with 19 additions and 0 deletions
5
common/cpu/intel/arrow-lake/cpu-only.nix
Normal file
5
common/cpu/intel/arrow-lake/cpu-only.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
../cpu-only.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
6
common/cpu/intel/arrow-lake/default.nix
Normal file
6
common/cpu/intel/arrow-lake/default.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./cpu-only.nix
|
||||||
|
../../../gpu/intel/arrow-lake
|
||||||
|
];
|
||||||
|
}
|
||||||
8
common/gpu/intel/arrow-lake/default.nix
Normal file
8
common/gpu/intel/arrow-lake/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue