infrastructure/systems/minecraft/default.nix
2024-09-21 19:47:43 -07:00

20 lines
299 B
Nix

_: {
imports = [
./proxmox.nix
];
arch = "x86_64";
type = "NixOS";
modules = [
./nixos.nix
];
exports = {
services = {
tailscale.enable = true;
minecraft = {
enable = true;
id = "marka";
ports.query.enable = true;
};
};
};
}