mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
12 lines
210 B
Nix
12 lines
210 B
Nix
{pkgs, ...}: {
|
|
hardware.graphics = {
|
|
enable = true;
|
|
extraPackages = with pkgs; [
|
|
rocmPackages.clr.icd
|
|
# Support VA-API pour AMD
|
|
libvdpau-va-gl
|
|
libva-vdpau-driver
|
|
];
|
|
};
|
|
}
|