fix(nix/host/orion): properly enable graphics acceleration
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m4s

This commit is contained in:
Price Hiller 2024-06-22 05:50:43 -05:00
parent f980f035c0
commit 6b5270d843
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -26,6 +26,13 @@
];
};
};
hardware.graphics.enable = true;
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
intel-media-driver
intel-vaapi-driver
libvdpau
];
};
services.spice-vdagentd.enable = true;
}