Files
Nomarchy/core/system/graphics.nix
2026-04-13 13:05:59 +01:00

11 lines
251 B
Nix

{ 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;
};
}