Add Intel Ice Lake GPU config
Based directly on Tiger Lake. According to Gentoo Wiki, both processors should have the same driver. (https://wiki.gentoo.org/wiki/Intel#Feature_support)
This commit is contained in:
parent
a351494b0e
commit
ad0b1c0763
1 changed files with 8 additions and 0 deletions
8
common/gpu/intel/ice-lake/default.nix
Normal file
8
common/gpu/intel/ice-lake/default.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
imports = [ ../. ];
|
||||
config = {
|
||||
boot.kernelParams = lib.mkIf (config.hardware.intelgpu.driver == "i915") [ "i915.enable_guc=3" ];
|
||||
hardware.intelgpu.vaapiDriver = "intel-media-driver";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue