nix-dotfiles/hosts/modules/steam.nix
2025-10-26 07:50:01 -06:00

27 lines
556 B
Nix

{pkgs, ...}: {
programs.steam = {
enable = true;
# apparently enabling this makes big picture boot up, does not work on nvidia however
# gamescopeSession.enable = true;
extraCompatPackages = [
pkgs.proton-ge-bin
];
};
programs.gamemode = {
enable = true;
enableRenice = true;
};
hardware.graphics = {
enable = true;
enable32Bit = true;
};
environment.systemPackages = with pkgs; [
lutris
wineWowPackages.stable
winetricks
protontricks
gamemode
mangohud
libstrangle
];
}