fix(graphics): explicitly add graphics accelleration

This commit is contained in:
2026-03-05 20:50:50 +01:00
parent 6a132670e2
commit 7566d0d1ef
2 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
# enable GPU acceleration (mesa, vulkan, egl)
hardware.graphics = {
enable = true;
enable32Bit = true;
};
}