Files
nixos/packages/steam/default.nix
T
2025-07-19 11:43:38 -05:00

21 lines
379 B
Nix

{
pkgs,
myConfig,
...
}: {
environment.systemPackages = with pkgs; [
steam-run
];
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;
}