dotfiles/modules/gaming.nix
2023-08-25 11:14:17 -05:00

25 lines
388 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
dwarfs
fuse-overlayfs
steam-run
];
}