about summary refs log tree commit diff stats
path: root/system/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'system/graphics')
-rw-r--r--system/graphics/default.nix24
1 files changed, 22 insertions, 2 deletions
diff --git a/system/graphics/default.nix b/system/graphics/default.nix
index eb92d5ec..dba4ba90 100644
--- a/system/graphics/default.nix
+++ b/system/graphics/default.nix
@@ -1,4 +1,24 @@
-{config, ...}: {
-  hardware.opengl.enable = true;
+{
+  config,
+  pkgs,
+  ...
+}: {
+  nixpkgs.config.packageOverrides = pkgs: {
+    vaapiIntel = pkgs.vaapiIntel.override {enableHybridCodec = true;};
+  };
+  hardware.opengl = {
+    enable = true;
+    extraPackages = builtins.attrValues {
+      # TODO should this activate intel stuff here?
+      inherit
+        (pkgs)
+        intel-media-driver # LIBVA_DRIVER_NAME=iHD
+        vaapiIntel # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
+        vaapiVdpau
+        libvdpau-va-gl
+        ;
+    };
+  };
 }
 # vim: ts=2
+