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