21 lines
366 B
Nix
21 lines
366 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.steam.protontricks.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
dxvk
|
|
protontricks
|
|
protonplus
|
|
steam-run
|
|
umu-launcher
|
|
vkd3d-proton
|
|
wineWowPackages.stable
|
|
winetricks
|
|
];
|
|
|
|
environment.sessionVariables = {
|
|
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "$HOME/.steam/root/compatibilitytools.d";
|
|
};
|
|
}
|