This commit is contained in:
Madeleine Sydney
2025-04-02 09:41:40 -06:00
commit e40d152489
13 changed files with 392 additions and 0 deletions

14
tf2/packages/scripts.nix Normal file
View File

@@ -0,0 +1,14 @@
{ fetchurl, mkTf2Config, ... }:
{
loadouts-script = mkTf2Config rec {
pname = "tf2-loadouts-script";
version = "3.1";
custom = [
(fetchurl {
url = "https://github.com/jooonior/tf2-loadouts-script/releases/download/v${version}/loadouts.vpk";
hash = "sha256-qMDQe/lLZz5YdH6kvG7vNKHUxPvId4AMqu/hFqr/Sd8=";
})
];
};
}