From cb07de0f12dea11a9c1f4706c1dadc8863f94411 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sat, 17 Oct 2020 20:23:33 +0200 Subject: [PATCH] gpu/intel: Add beignet --- modules/gpu/intel.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/gpu/intel.nix b/modules/gpu/intel.nix index 5983f50..3fea0b2 100644 --- a/modules/gpu/intel.nix +++ b/modules/gpu/intel.nix @@ -1,5 +1,8 @@ { pkgs, ... }: { - hardware.opengl.extraPackages = [ pkgs.vaapiIntel ]; + hardware.opengl.extraPackages = with pkgs; [ + beignet + vaapiIntel + ]; }