dotfiles/modules/gaming.nix
2023-09-06 11:48:36 -05:00

27 lines
399 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
];
}