mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-22 19:09:42 +01:00
feat(Intel CoffeeLake): Added support
This commit is contained in:
parent
dd93bef722
commit
0c657fd134
3 changed files with 22 additions and 0 deletions
5
common/cpu/intel/coffee-lake/cpu-only.nix
Normal file
5
common/cpu/intel/coffee-lake/cpu-only.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
../cpu-only.nix
|
||||
];
|
||||
}
|
6
common/cpu/intel/coffee-lake/default.nix
Normal file
6
common/cpu/intel/coffee-lake/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./cpu-only.nix
|
||||
../../../gpu/intel/coffee-lake
|
||||
];
|
||||
}
|
11
common/gpu/intel/coffee-lake/default.nix
Normal file
11
common/gpu/intel/coffee-lake/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [ ../. ];
|
||||
|
||||
boot.kernelParams = [
|
||||
"i915.enable_guc=2"
|
||||
];
|
||||
|
||||
hardware.intelgpu.vaapiDriver = "intel-media-driver";
|
||||
}
|
Loading…
Reference in a new issue