nixos-config/common/gpu-bumblebee.nix
2019-12-12 15:50:06 +01:00

16 lines
278 B
Nix

{ config, pkgs, ... }:
{
# Graphics drivers
hardware.bumblebee.enable = true;
hardware.opengl.driSupport32Bit = true;
hardware.opengl = {
driSupport32Bit = true;
extraPackages = with pkgs; [
vaapiIntel
vaapiVdpau
libvdpau-va-gl
];
};
}