linuxware/shared/home-manager/gaming.nix

29 lines
497 B
Nix

{ pkgs, ... }:
{
home.file = {
# Configuration for gamemode, for running games with optimizations.
".config/gamemode.ini".source = ./dotfiles/gamemode.ini;
# Configure DXVK
".config/dxvk.conf".text = ''
dxvk.enableGraphicsPipelineLibrary = Auto
'';
};
home.packages = with pkgs; [
gamescope
heroic
protontricks
wineWowPackages.unstableFull
winetricks
# Games
openttd
prismlauncher
shattered-pixel-dungeon
xonotic
];
}