dotfiles/nixos/msi/modules/gaming.nix

17 lines
356 B
Nix
Raw Permalink Normal View History

2024-06-21 18:54:38 +02:00
{ pkgs, ... }:
{
2024-06-28 18:03:13 +02:00
home.packages = with pkgs; [
2024-06-21 18:54:38 +02:00
mangohud
protonup
lutris
bottles
];
2024-06-28 18:03:13 +02:00
home.sessionVariables = {
2024-06-21 18:54:38 +02:00
# Tell protonup where to install patched proton GE
2024-06-28 18:03:13 +02:00
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "\${HOME}/.steam/root/compatibilitytools.d";
2024-06-21 19:59:57 +02:00
# Apparently Steam client has broken scaling on Linux
STEAM_FORCE_DESKTOPUI_SCALING = "1.2";
2024-06-21 18:54:38 +02:00
};
}