From 656392f9a52fb7a721d67679c0160ada75045884 Mon Sep 17 00:00:00 2001 From: Tomodachi94 Date: Thu, 27 Jun 2024 10:21:59 -0700 Subject: [PATCH] nixos/graphics: hardware.opengl -> graphics --- nixos/workstation/graphics.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/workstation/graphics.nix b/nixos/workstation/graphics.nix index dcad977..9118bdf 100644 --- a/nixos/workstation/graphics.nix +++ b/nixos/workstation/graphics.nix @@ -1,11 +1,11 @@ { - hardware.opengl = { + hardware.graphics = { enable = true; # > On 64-bit systems, whether to support Direct Rendering for 32-bit applications (such as Wine). # > -- Manual # I enabled this to allow running the Epic Games Store through Lutris and Wine. # See https://nixos.wiki/wiki/Lutris for more information. - driSupport32Bit = true; # Did you read the comment before turning this off? + enable32Bit = true; # Did you read the comment before turning this off? }; }