game-mods: init

Add override for fh5 startup video
This commit is contained in:
2026-05-01 16:23:01 -04:00
parent 002579d58e
commit af8f651202
2 changed files with 273 additions and 0 deletions

View File

@@ -16,6 +16,7 @@
./lact.nix
./vr.nix
./forza-trigger
../../modules/desktop-game-mods.nix
inputs.impermanence.nixosModules.impermanence
];
@@ -81,4 +82,16 @@
# PS5 DualSense adaptive triggers in Forza Horizon 4 / 5.
services.forzaTrigger.enable = true;
# Skip the 40 MB T10/Microsoft Studios intro video on startup.
# 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.
services.gameMods = {
enable = true;
mods."fh5-no-intro" = {
steamAppId = 1551360;
files."media/UI/Videos/T10_MS_Combined.bk2".empty = true;
};
};
}