Files
nixos/packages/steam/default.nix
T
2025-12-12 10:10:37 -06:00

18 lines
316 B
Nix

{
pkgs,
myConfig,
...
}: {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
gamescopeSession.enable = true;
extraCompatPackages = with pkgs; [proton-ge-bin];
extraPackages = with pkgs; [
mangohud
gamescope-wsi
];
};
programs.gamemode.enable = true;
}