Files
nixos/packages/steam/launch.nix
T
2025-07-17 15:04:47 -05:00

20 lines
356 B
Nix

{pkgs, ...}: {
programs = {
gamescope = {
enable = true;
capSysNice = true;
};
steam = {
enable = true;
gamescopeSession.enable = true;
};
};
hardware.xone.enable = true;
environment = {
systemPackages = pkgs.mangohud;
loginShellInit = ''
[[ "$(tty)" = "/dev/tty1" ]] && ./gs.sh
'';
};
}