├── .github └── workflows │ └── docs.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── checks.nix ├── docs ├── default.nix └── template.html ├── flake.lock ├── flake.nix ├── home-manager.nix ├── src ├── curseforge-modpack.nix ├── curseforge.nix ├── download-module.nix ├── downloaders.nix ├── fabric.nix ├── forge │ ├── DownloadMojmaps.java │ ├── default.nix │ └── forge.kts ├── ftb.nix ├── internal.nix ├── jsonnet │ ├── download.jsonnet │ ├── forge.jsonnet │ ├── lib.libsonnet │ ├── liteloader.jsonnet │ └── normalize.jsonnet ├── liteloader.nix ├── minecraft.nix ├── modrinth.nix └── runners.nix ├── template └── flake.nix ├── test-one.sh └── test.sh /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /gamedir 2 | /result* 3 | /test 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/README.md -------------------------------------------------------------------------------- /checks.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/checks.nix -------------------------------------------------------------------------------- /docs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/docs/default.nix -------------------------------------------------------------------------------- /docs/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/docs/template.html -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/flake.nix -------------------------------------------------------------------------------- /home-manager.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/home-manager.nix -------------------------------------------------------------------------------- /src/curseforge-modpack.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/curseforge-modpack.nix -------------------------------------------------------------------------------- /src/curseforge.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/curseforge.nix -------------------------------------------------------------------------------- /src/download-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/download-module.nix -------------------------------------------------------------------------------- /src/downloaders.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/downloaders.nix -------------------------------------------------------------------------------- /src/fabric.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/fabric.nix -------------------------------------------------------------------------------- /src/forge/DownloadMojmaps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/forge/DownloadMojmaps.java -------------------------------------------------------------------------------- /src/forge/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/forge/default.nix -------------------------------------------------------------------------------- /src/forge/forge.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/forge/forge.kts -------------------------------------------------------------------------------- /src/ftb.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/ftb.nix -------------------------------------------------------------------------------- /src/internal.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/internal.nix -------------------------------------------------------------------------------- /src/jsonnet/download.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/jsonnet/download.jsonnet -------------------------------------------------------------------------------- /src/jsonnet/forge.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/jsonnet/forge.jsonnet -------------------------------------------------------------------------------- /src/jsonnet/lib.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/jsonnet/lib.libsonnet -------------------------------------------------------------------------------- /src/jsonnet/liteloader.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/jsonnet/liteloader.jsonnet -------------------------------------------------------------------------------- /src/jsonnet/normalize.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/jsonnet/normalize.jsonnet -------------------------------------------------------------------------------- /src/liteloader.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/liteloader.nix -------------------------------------------------------------------------------- /src/minecraft.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/minecraft.nix -------------------------------------------------------------------------------- /src/modrinth.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/modrinth.nix -------------------------------------------------------------------------------- /src/runners.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/src/runners.nix -------------------------------------------------------------------------------- /template/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/template/flake.nix -------------------------------------------------------------------------------- /test-one.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/test-one.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12Boti/nix-minecraft/HEAD/test.sh --------------------------------------------------------------------------------