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 + ]; + }; }