dotfiles/modules/gaming.nix
2024-04-03 05:16:04 -05:00

26 lines
403 B
Nix

{ pkgs, lib, config, ... }:
with lib;
{
programs.steam.enable = true;
hardware.opengl = {
driSupport = true;
driSupport32Bit = true;
};
environment.systemPackages = with pkgs; [
airshipper
lutris
heroic
protonup-qt
winePackages.waylandFull
winetricks
gamescope
# cemu
# yuzu
mangohud
openmw
dwarfs
fuse-overlayfs
steam-run
];
}