nix-dotfiles/hosts/modules/steam.nix
alsaiduq-lab 4ca8852a9b added
removed nix gaming due to it being sunsetted by umu-launcher
2025-12-22 02:04:09 -07:00

24 lines
486 B
Nix

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