dotfiles/nixos/msi/gaming.nix
2024-06-21 18:54:38 +02:00

23 lines
397 B
Nix

{ 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";
};
}