feat(minecraft): add!

This commit is contained in:
Kat Inskip 2024-09-16 18:23:23 -07:00
parent 7e9dce8d40
commit f3c72e7f6c
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
6 changed files with 206 additions and 0 deletions

View file

@ -0,0 +1,23 @@
_: {
imports = [
./proxmox.nix
];
arch = "x86_64";
type = "NixOS";
ci.allowFailure = true;
access.online.enable = false;
modules = [
./nixos.nix
];
network.networks = {
tail = {
address4 = "100.70.124.79";
address6 = "fd7a:115c:a1e0::b001:7c4f";
};
};
exports = {
services = {
tailscale.enable = true;
};
};
}