dotfiles/nixos/msi/gaming.nix

25 lines
494 B
Nix
Raw Normal View History

2024-06-21 18:54:38 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
mangohud
protonup
lutris
bottles
];
programs = {
steam = {
enable = true;
gamescopeSession.enable = true;
};
gamemode.enable = true;
};
environment.sessionVariables = {
# Tell protonup where to install patched proton GE
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "/home/kamov/.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
};
}