infrastructure/systems/minecraft/default.nix
2024-09-20 22:15:37 -07:00

19 lines
266 B
Nix

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