mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 22:13:56 -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;
|
driSupport = true;
|
||||||
driSupport32Bit = true;
|
driSupport32Bit = true;
|
||||||
|
|
||||||
extraPackages = with pkgs; [
|
extraPackages = [
|
||||||
intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
pkgs.intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
||||||
(intel-vaapi-driver.override {enableHybridCodec = true;})
|
(pkgs.intel-vaapi-driver.override {enableHybridCodec = true;})
|
||||||
libvdpau-va-gl
|
pkgs.libvdpau-va-gl
|
||||||
];
|
];
|
||||||
|
|
||||||
extraPackages32 = with pkgs.driversi686Linux; [
|
extraPackages32 = [
|
||||||
intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
pkgs.driversi686Linux.intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
||||||
(intel-vaapi-driver.override {enableHybridCodec = true;})
|
(pkgs.driversi686Linux.intel-vaapi-driver.override {enableHybridCodec = true;})
|
||||||
libvdpau-va-gl
|
pkgs.driversi686Linux.libvdpau-va-gl
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue