Skip to content

Instantly share code, notes, and snippets.

@niklaskorz
Created December 3, 2025 17:34
Show Gist options
  • Select an option

  • Save niklaskorz/a3d650a3954c7057c731fad820b69dbe to your computer and use it in GitHub Desktop.

Select an option

Save niklaskorz/a3d650a3954c7057c731fad820b69dbe to your computer and use it in GitHub Desktop.
{ pkgs, ... }:
{
environment.systemPackages = [
pkgs.gamescope-wsi
];
programs.steam.gamescopeSession = {
enable = true;
env = {
MANGOHUD_CONFIG = "read_cfg";
MANGOHUD_CONFIGFILE = toString ./MangoHud.conf;
ENABLE_GAMESCOPE_WSI = "1";
DXVK_HDR = "1";
};
args = [
"--hdr-enabled"
"--hdr-itm-enable"
"--hide-cursor-delay 3000"
"--fade-out-duration 200"
"--xwayland-count 2"
"--mangoapp"
"-W 3840"
"-H 2160"
"-w 3840"
"-h 2160"
"-r 120"
"--adaptive-sync"
"-O HDMI-A-1"
"--immediate-flips"
];
steamArgs = [
"-gamepadui"
"-pipewire-dmabuf"
"-steamos3"
];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment