NixToSee/modules/hardware/gpu.nix
2024-12-13 19:06:00 +01:00

6 lines
126 B
Nix

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