Modpack/flake.nix

16 lines
405 B
Nix
Raw Normal View History

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 03:55:41 +02:00
}