nixos-config/common/gpu-bumblebee.nix

17 lines
278 B
Nix
Raw Normal View History

2019-10-19 12:55:35 +02:00
{ config, pkgs, ... }:
{
# Graphics drivers
hardware.bumblebee.enable = true;
hardware.opengl.driSupport32Bit = true;
2019-12-12 15:50:06 +01:00
hardware.opengl = {
driSupport32Bit = true;
extraPackages = with pkgs; [
vaapiIntel
vaapiVdpau
libvdpau-va-gl
];
};
2019-10-19 12:55:35 +02:00
}