dotfiles/nixos/msi/modules/gaming.nix
2024-07-22 23:55:51 +02:00

17 lines
356 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
mangohud
protonup
lutris
bottles
];
home.sessionVariables = {
# Tell protonup where to install patched proton GE
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "\${HOME}/.steam/root/compatibilitytools.d";
# Apparently Steam client has broken scaling on Linux
STEAM_FORCE_DESKTOPUI_SCALING = "1.2";
};
}