This is an utility to have my matches in Deadlock (video-game) be fed into the community maintained API faster and perhaps more accurately.
30 lines
562 B
Nix
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
|
|
];
|
|
}
|