This commit is contained in:
Miguel Palhas
2025-06-29 16:24:31 +01:00
parent bf1acd55b7
commit 7f6cd33011
6 changed files with 133 additions and 0 deletions
@@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
services.xserver.videoDrivers = [ "intel" ];
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
vpl-gpu-rt # or intel-media-sdk for QSV
];
};
programs.xwayland.enable = true;
}