adding better steam support

This commit is contained in:
Chris Cochrun 2023-08-25 10:34:30 -05:00
parent 17d8868272
commit 7d026a73c4

View file

@ -3,12 +3,16 @@
with lib; with lib;
{ {
programs.steam.enable = true; programs.steam.enable = true;
hardware.opengl = {
driSupport = true;
driSupport32Bit = true;
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
airshipper airshipper
lutris lutris
heroic heroic
protonup-qt protonup-qt
wineWayland winePackages.waylandFull
winetricks winetricks
gamescope gamescope
cemu cemu
@ -16,5 +20,6 @@ with lib;
mangohud mangohud
dwarfs dwarfs
fuse-overlayfs fuse-overlayfs
steam-run
]; ];
} }