From 7d026a73c4b1d230e8941e098249a80f2ff73aac Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 25 Aug 2023 10:34:30 -0500 Subject: [PATCH] adding better steam support --- modules/gaming.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/gaming.nix b/modules/gaming.nix index 9414cda..d8f4074 100644 --- a/modules/gaming.nix +++ b/modules/gaming.nix @@ -3,12 +3,16 @@ with lib; { programs.steam.enable = true; + hardware.opengl = { + driSupport = true; + driSupport32Bit = true; + }; environment.systemPackages = with pkgs; [ airshipper lutris heroic protonup-qt - wineWayland + winePackages.waylandFull winetricks gamescope cemu @@ -16,5 +20,6 @@ with lib; mangohud dwarfs fuse-overlayfs + steam-run ]; }