feat: add common config for intel elhart-lake and jasper-lake
The option added is based on this ticket: https://gitlab.freedesktop.org/drm/intel/-/issues/8080 Other relevant documentation: https://jellyfin.org/docs/general/administration/hardware-acceleration/intel/#known-issues-and-limitations
This commit is contained in:
parent
6f081cd52a
commit
19cf623e48
7
common/cpu/intel/elkhart-lake/default.nix
Normal file
7
common/cpu/intel/elkhart-lake/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
imports = [ ../. ];
|
||||
|
||||
boot.kernelParams = [
|
||||
"i915.enable_guc=2"
|
||||
];
|
||||
}
|
7
common/cpu/intel/jasper-lake/default.nix
Normal file
7
common/cpu/intel/jasper-lake/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
imports = [ ../. ];
|
||||
|
||||
boot.kernelParams = [
|
||||
"i915.enable_guc=2"
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue