From 598f6245c87a5720e75f3576e245545f825afff9 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Tue, 24 Feb 2026 15:07:29 +0000 Subject: [PATCH] tohru: Enable Intel integrated graphics hardware acceleration --- hosts/tohru/hardware.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hosts/tohru/hardware.nix b/hosts/tohru/hardware.nix index a2515bd..cd6d18e 100644 --- a/hosts/tohru/hardware.nix +++ b/hosts/tohru/hardware.nix @@ -5,6 +5,16 @@ hardware.cpu.intel.updateMicrocode = true; services.fwupd.enable = true; + services.xserver.videoDrivers = [ "modesetting" ]; + hardware.graphics = { + enable = true; + extraPackages = with pkgs; [ + intel-media-driver + vpl-gpu-rt + intel-compute-runtime + ]; + }; + services.printing.drivers = [ pkgs.hplip ]; }