mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-23 07:03:07 +01:00
22 lines
417 B
Nix
22 lines
417 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
let inherit (import ../../options.nix) gpuType; in
|
|
lib.mkIf ("${gpuType}" == "intel") {
|
|
nixpkgs.config.packageOverrides =
|
|
pkgs: {
|
|
vaapiIntel = pkgs.vaapiIntel.override {
|
|
enableHybridCodec = true;
|
|
};
|
|
};
|
|
|
|
# OpenGL
|
|
hardware.opengl = {
|
|
extraPackages = with pkgs; [
|
|
intel-media-driver
|
|
vaapiIntel
|
|
vaapiVdpau
|
|
libvdpau-va-gl
|
|
];
|
|
};
|
|
}
|