18 lines
316 B
Nix
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;
|
|
}
|