Skip to content

Commit

Permalink
nixos/graphics: enable 32bit direct rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
tomodachi94 committed Apr 13, 2024
1 parent fcf75fe commit 58db8b1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion nixos/graphics/default.nix
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
{
hardware.opengl.enable = true;
hardware.opengl = {
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?
};
}

0 comments on commit 58db8b1

Please sign in to comment.