Add initial configuration files and validation scripts for NixOS setup

This commit is contained in:
Root User 2026-04-06 00:08:14 +03:00
parent a9a857b460
commit a86437d4b2
Signed by: root
GPG key ID: 087F0A95E5766D72
2 changed files with 14 additions and 10 deletions

View file

@ -73,9 +73,13 @@
"nixos-minecraft" = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./nix-system-configs/modules/system/minecraft.nix
# Apply the overlay first so pkgs in later modules (like our local
# `minecraft.nix`) see the extra helpers provided by the overlay
{ nixpkgs.overlays = [ inputs.nix-minecraft.overlay ]; }
nix-minecraft.nixosModules.minecraft-servers
{nixpkgs.overlays = [inputs.nix-minecraft.overlay];}
./nix-system-configs/modules/system/minecraft.nix
];
};
};