mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 16:33:55 -05:00
hwModules/gpu/intel: fix nesting issues
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
This commit is contained in:
parent
8bfa0a602e
commit
c40369f1cf
|
@ -14,16 +14,16 @@
|
|||
driSupport = true;
|
||||
driSupport32Bit = true;
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
||||
(intel-vaapi-driver.override {enableHybridCodec = true;})
|
||||
libvdpau-va-gl
|
||||
extraPackages = [
|
||||
pkgs.intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
||||
(pkgs.intel-vaapi-driver.override {enableHybridCodec = true;})
|
||||
pkgs.libvdpau-va-gl
|
||||
];
|
||||
|
||||
extraPackages32 = with pkgs.driversi686Linux; [
|
||||
intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
||||
(intel-vaapi-driver.override {enableHybridCodec = true;})
|
||||
libvdpau-va-gl
|
||||
extraPackages32 = [
|
||||
pkgs.driversi686Linux.intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
||||
(pkgs.driversi686Linux.intel-vaapi-driver.override {enableHybridCodec = true;})
|
||||
pkgs.driversi686Linux.libvdpau-va-gl
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue