NixToSee/modules/hardware/gpu-backend.nix
2025-09-13 01:50:56 +02:00

8 lines
126 B
Nix

{pkgs, ...}: {
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
libvdpau-va-gl
];
};
}