feat(pilot1): disable bumblebee

This commit is contained in:
Felix Schröter 2021-08-10 17:01:52 +02:00
parent 357940abaa
commit 3e98fbf504
No known key found for this signature in database
GPG key ID: BE85F0D9987FA014
3 changed files with 3 additions and 5 deletions

13
hardware/gpu-intel.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
hardware.opengl = {
driSupport32Bit = true;
extraPackages = with pkgs; [ vaapiIntel vaapiVdpau libvdpau-va-gl ];
extraPackages32 = with pkgs.pkgsi686Linux; [
vaapiIntel
libvdpau-va-gl
vaapiVdpau
];
};
}