feat: improve video configuration for VM and Live ISO

This commit is contained in:
Bernardo Magri
2026-04-13 13:05:59 +01:00
parent 8e4e801244
commit 66096cbc46
7 changed files with 23 additions and 2 deletions

10
core/system/graphics.nix Normal file
View File

@@ -0,0 +1,10 @@
{ lib, ... }:
{
# Enable OpenGL/Graphics for Wayland Compositors (Hyprland)
# This provides better resolution and smoothness for all platforms.
hardware.graphics = {
enable = lib.mkDefault true;
enable32Bit = lib.mkDefault true;
};
}