Intel Graphics

From NixOS Wiki
Revision as of 21:45, 18 July 2019 by imported>Colemickens

Iris

To use the new Gallium iris driver, you can use the following in your system configuration:

hardware.opengl.package =
  (pkgs.mesa.override {
    galliumDrivers = [
      "r300" "r600" "radeonsi" "nouveau" "virgl" "svga" "swrast"
      "iris"
    ];
  });

Note that you might want additional entries in extraPackages, for example, to enable "accelerated video playback".

(See this GitHub thread for context and explanation.)