NixToSee/modules/hardware/gpu.nix
2025-05-15 20:36:25 +02:00

8 lines
126 B
Nix

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