game-mod: extend module

This commit is contained in:
2026-05-02 20:08:09 -04:00
parent 07583b6f96
commit bb983a88e2
2 changed files with 110 additions and 39 deletions

View File

@@ -87,11 +87,17 @@
# The module discovers FH5's install path from Steam's library metadata
# and replaces the BK2 file with a 0-byte stub. Re-applies daily via
# systemd timer so Steam verify/updates don't silently undo it.
#
# Two copies live in the install: media/UI/Videos/T10_MS_Combined.bk2
# (SD) and .../hires/T10_MS_Combined.bk2 (hires). The engine picks one
# based on the installed asset profile, so we stub both for guaranteed
# coverage. PCGamingWiki documents both paths under "Skip intro video".
services.gameMods = {
enable = true;
mods."fh5-no-intro" = {
steamAppId = 1551360;
files."media/UI/Videos/T10_MS_Combined.bk2".empty = true;
files."media/UI/Videos/hires/T10_MS_Combined.bk2".empty = true;
};
};
}