add steam gamescope for remote gaming

This commit is contained in:
alisceon 2026-04-03 17:05:32 +02:00
parent 19cb85fa73
commit 208352c2dc
3 changed files with 20 additions and 7 deletions

View file

@ -63,7 +63,6 @@
pkgs.efibootmgr
pkgs.prismlauncher
pkgs.nvtopPackages.nvidia
pkgs.gamescope
];
};

View file

@ -15,6 +15,7 @@
evince
seahorse
nautilus
gamescope
];
programs = {
@ -49,6 +50,19 @@
binPath = "${pkgs.sway}/bin/sway";
extraArgs = [ "--unsupported-gpu" ];
};
big_picture = {
prettyName = "Steam Big Picture";
comment = "Launch in big picture mode within a gamescope container";
binPath = "${pkgs.gamescope}/bin/gamescope";
extraArgs = [
"-e"
"-W 1920"
"-H 1080"
"--"
"/usr/bin/steam"
"-tenfoot"
];
};
};
};