From ea1b76483dbe66fdf935c4319889315b1c289bb7 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Fri, 21 Jun 2024 16:33:21 +0200 Subject: [PATCH] feat: comply with new nixos settings regarding opengl --- modules/core/hardware.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/core/hardware.nix b/modules/core/hardware.nix index fd285b3..492c15e 100644 --- a/modules/core/hardware.nix +++ b/modules/core/hardware.nix @@ -1,10 +1,10 @@ { pkgs, ... }: { hardware = { - opengl = { + graphics = { enable = true; - driSupport = true; - driSupport32Bit = true; + # driSupport = true; # Has no effect anymore, as of 2024-06-21 + # driSupport32Bit = true; extraPackages = with pkgs; []; }; enableRedistributableFirmware = true;