From 12daec0feedc31cdb88a9e9e1ec6bc41f9a486c8 Mon Sep 17 00:00:00 2001 From: IAteYourCookies Date: Thu, 30 Oct 2025 15:18:30 +0100 Subject: [PATCH] Rectified warnings about graphics configuration names being changed. --- configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 850ccba..ff8baa8 100755 --- a/configuration.nix +++ b/configuration.nix @@ -166,10 +166,10 @@ hardware.enableRedistributableFirmware = true; #Enables proprietary, redistributable firmware so hardware devices function properly - hardware.opengl = { + hardware.graphics = { enable = true; # Mesa should be enabled by default for Vulkan, but you can be explicit - driSupport32Bit = true; # For 32-bit applications + enable32Bit = true; # For 32-bit applications }; hardware.cpu.amd.updateMicrocode = true;