From 6b5270d843139a4529b1f27c6966ece1fa961890 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 22 Jun 2024 05:50:43 -0500 Subject: [PATCH] fix(nix/host/orion): properly enable graphics acceleration --- hosts/orion/modules/graphical.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/orion/modules/graphical.nix b/hosts/orion/modules/graphical.nix index 3440a357..c3664b58 100644 --- a/hosts/orion/modules/graphical.nix +++ b/hosts/orion/modules/graphical.nix @@ -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; }