- Convert wrappers for steam, heroic, and lutris to use defaults - Update desktop entries with enhanced action options - Introduce new launcher config in gojo for The Alters with proper environment
52 lines
1.4 KiB
Nix
52 lines
1.4 KiB
Nix
{
|
|
config,
|
|
osConfig,
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
|
|
play = {
|
|
wrappers = {
|
|
alters = {
|
|
enable = true;
|
|
command = "${lib.getExe osConfig.programs.steam.package} steam://rungameid/1601570 -windowed -tenfoot";
|
|
extraOptions = {
|
|
"steam" = true;
|
|
"disable-layers" = true;
|
|
};
|
|
environment = {
|
|
__GL_SHADER_DISK_CACHE_SKIP_CLEANUP = 1;
|
|
PROTON_USE_SDL = 1;
|
|
STEAM_FORCE_DESKTOPUI_SCALING = 1;
|
|
STEAM_GAMEPADUI = 1;
|
|
WAYLANDDRV_RAWINPUT = 1;
|
|
};
|
|
};
|
|
};
|
|
|
|
# Override default desktop entries to use gamescoperun wrappers/launchers
|
|
home.activation.removeExistingDesktopFiles = lib.hm.dag.entryBefore [ "writeBoundary" ] ''
|
|
rm -f "${config.home.homeDirectory}/.local/share/applications/The Alters.desktop"
|
|
'';
|
|
|
|
xdg.desktopEntries = {
|
|
"The Alters" = {
|
|
name = "The Alters";
|
|
comment = "A game about life, choices, and the people we meet";
|
|
exec = "${lib.getExe config.play.wrappers.alters.wrappedPackage}";
|
|
icon = "steam_icon_1601570";
|
|
type = "Application";
|
|
terminal = false;
|
|
categories = [ "Game" ];
|
|
actions = {
|
|
regular = {
|
|
name = "The Alters (No Gamescope)";
|
|
exec = "${lib.getExe osConfig.programs.steam.package} steam://rungameid/1601570 -windowed -nochatui -nofriendsui -silent";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|