This commit is contained in:
Miguel Palhas
2025-01-29 12:09:47 +00:00
parent 1428e1ff69
commit 6f6b6c01d0
4 changed files with 93 additions and 87 deletions
+12
View File
@@ -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;
}