From 8bfa39bff8243208d77c5af58b73421916743238 Mon Sep 17 00:00:00 2001 From: lulusilly Date: Wed, 24 Sep 2025 23:31:53 -0400 Subject: [PATCH] Added hardware acceleration for Intel devices in common.nix --- .config/nix/hosts/common.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.config/nix/hosts/common.nix b/.config/nix/hosts/common.nix index b911567..ccbb17f 100644 --- a/.config/nix/hosts/common.nix +++ b/.config/nix/hosts/common.nix @@ -74,4 +74,12 @@ services.espanso.enable = true; # OpenSSH services.openssh.enable = true; + # Hardware acceleration support + hardware.graphics = { + enable = true; + extraPackages = with pkgs; [ + intel-media-driver + intel-vaapi-driver + ]; + }; }