Skip to content

Commit

Permalink
feat(Intel CoffeeLake): Added support
Browse files Browse the repository at this point in the history
  • Loading branch information
KeyZox71 authored and mergify[bot] committed Nov 16, 2024
1 parent dd93bef commit 0c657fd
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
5 changes: 5 additions & 0 deletions common/cpu/intel/coffee-lake/cpu-only.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
imports = [
../cpu-only.nix
];
}
6 changes: 6 additions & 0 deletions common/cpu/intel/coffee-lake/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
imports = [
./cpu-only.nix
../../../gpu/intel/coffee-lake
];
}
11 changes: 11 additions & 0 deletions common/gpu/intel/coffee-lake/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{ ... }:

{
imports = [ ../. ];

boot.kernelParams = [
"i915.enable_guc=2"
];

hardware.intelgpu.vaapiDriver = "intel-media-driver";
}

0 comments on commit 0c657fd

Please sign in to comment.