rename a few things, add minizen host, rebase with other changes

This commit is contained in:
k3t
2026-09-04 15:52:13 -06:00
parent a00258ed3d
commit 4772a085ae
8 changed files with 218 additions and 44 deletions
+20
View File
@@ -0,0 +1,20 @@
{ config, pkgs, lib, ... }:
{
virtualisation.oci-containers.containers."minecraft-server" = {
image = "ghcr.io/graalvm/graalvm-community:25";
volumes = [
"/var/lib/minecraft:/data:rw"
];
ports = [
"25565:25565/tcp"
"24454:24454/udp"
];
extraOptions = [
"--tty"
"--interactive"
];
entrypoint = "/data/run.sh";
log-driver = "journald";
};
}