flakes/modules/commons/graphics.nix
Chinmay D. Pai 3a708c2a76
chore: cleanup and update flakes
Signed-off-by: Chinmay D. Pai <chinmay.pai@zerodha.com>
2023-10-16 22:36:44 +05:30

16 lines
275 B
Nix

{pkgs, ...}: {
hardware = {
opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
extraPackages = with pkgs; [
intel-media-driver
intel-vaapi-driver
vaapiVdpau
libvdpau-va-gl
];
};
};
}