From 19cf623e481f1a29d01101f6468f58aa96e36e08 Mon Sep 17 00:00:00 2001 From: Yannick Mayeur Date: Thu, 31 Aug 2023 14:25:59 +0200 Subject: [PATCH] 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 --- common/cpu/intel/elkhart-lake/default.nix | 7 +++++++ common/cpu/intel/jasper-lake/default.nix | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 common/cpu/intel/elkhart-lake/default.nix create mode 100644 common/cpu/intel/jasper-lake/default.nix diff --git a/common/cpu/intel/elkhart-lake/default.nix b/common/cpu/intel/elkhart-lake/default.nix new file mode 100644 index 000000000..f5dd5ad6d --- /dev/null +++ b/common/cpu/intel/elkhart-lake/default.nix @@ -0,0 +1,7 @@ +{ + imports = [ ../. ]; + + boot.kernelParams = [ + "i915.enable_guc=2" + ]; +} diff --git a/common/cpu/intel/jasper-lake/default.nix b/common/cpu/intel/jasper-lake/default.nix new file mode 100644 index 000000000..f5dd5ad6d --- /dev/null +++ b/common/cpu/intel/jasper-lake/default.nix @@ -0,0 +1,7 @@ +{ + imports = [ ../. ]; + + boot.kernelParams = [ + "i915.enable_guc=2" + ]; +}