2025-05-18 03:55:41 +02:00
|
|
|
{
|
|
|
|
description = "Minecraft Modpack";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nix-modpack.url = "./nix-modpack";
|
2025-05-18 04:27:57 +02:00
|
|
|
nix-minecraft.url = "github:Jan-Bulthuis/nix-minecraft";
|
2025-05-18 03:55:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs =
|
|
|
|
inputs:
|
2025-05-18 04:27:57 +02:00
|
|
|
inputs.nix-modpack (system: {
|
|
|
|
packUrl = "https://git.bulthuis.dev/Jan/Modpack/raw/branch/main/pack.toml";
|
|
|
|
server = inputs.nix-minecraft.legacyPackages.${system}.neoForgeServers.neoforge-21_1_172;
|
2025-05-18 05:23:30 +02:00
|
|
|
clientGameVersion = "1.21.1";
|
|
|
|
clientLoaderUid = "net.neoforged";
|
|
|
|
clientLoaderVersion = "21.1.172";
|
2025-05-18 04:27:57 +02:00
|
|
|
});
|
2025-05-18 03:55:41 +02:00
|
|
|
}
|