linuxware/shared/home-manager/gaming.nix
Alexandre Cavalheiro S. Tiago da Silva dd52f6ee91
feat: deadlock-api-ingest package and output
This is an utility to have my matches in Deadlock (video-game) be fed
into the community maintained API faster and perhaps more accurately.
2025-09-23 17:33:44 -03:00

30 lines
562 B
Nix

{ self, 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
r2modman
self.packages.${system}.deadlock-api-ingest
wineWowPackages.stableFull
winetricks
# Games
openttd
prismlauncher
shattered-pixel-dungeon
xonotic
];
}