release: yet another Nix Minecraft Module

This commit is contained in:
Peritia 2025-09-26 11:42:25 +02:00
parent 9fdb947c2a
commit 839bb7de43
13 changed files with 1621 additions and 1 deletions

23
flake.nix Normal file
View file

@ -0,0 +1,23 @@
{
description = "Nyx-Modules";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
};
outputs = { self, nixpkgs, nix-minecraft, ... }: {
nixosModules.minecraft-servers = {
config,
lib,
pkgs,
...
}: {
imports = [
./minecraft
nix-minecraft.nixosModules.minecraft-servers
];
nixpkgs.overlays = [nix-minecraft.overlay];
};
};
}