Steam: Difference between revisions

Moved GameMode suggestion to Tips and Tricks section instead of it being a footnote in the initial installation instructions.
Malix (talk | contribs)
Gamescope HDR: update: enableWsi option
Line 129: Line 129:


<!--T:63-->
<!--T:63-->
In order for HDR to work within gamescope, you need to separately install the <code>gamescope-wsi</code> package alongside enabling the <code>gamescope</code> program.
In order for HDR to work within gamescope, you might need to separately enable the <code>enableWsi</code> option
</translate>
</translate>


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">programs.gamescope = {
programs.gamescope = {
   enable = true;
   enable = true;
  enableWsi = true;
   capSysNice = false;
   capSysNice = false;
};
};</syntaxhighlight>
environment.systemPackages = with pkgs; [
  gamescope-wsi # HDR might not work without this
];
</syntaxhighlight>


<translate>
<translate>