Compare commits
No commits in common. "a40c81af7c3eec0f609d62d50c675260afda7dc4" and "92ff91fe6db74584085ee327698f22797432fcf5" have entirely different histories.
a40c81af7c
...
92ff91fe6d
2 changed files with 2 additions and 2 deletions
|
@ -87,6 +87,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
wget
|
||||||
dconf
|
dconf
|
||||||
polkit_gnome
|
polkit_gnome
|
||||||
libvirt
|
libvirt
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
_: {
|
_: {
|
||||||
networking.firewall.allowedTCPPorts = [25565];
|
networking.firewall.allowedTCPPorts = [25565];
|
||||||
networking.firewall.allowedUDPPorts = [25565];
|
|
||||||
virtualisation.oci-containers.containers.minecraft = {
|
virtualisation.oci-containers.containers.minecraft = {
|
||||||
image = "itzg/minecraft-server";
|
image = "itzg/minecraft-server";
|
||||||
ports = ["25565:25565"];
|
ports = ["25565:25565"];
|
||||||
environment = {
|
environment = {
|
||||||
EULA = "TRUE";
|
EULA = "TRUE";
|
||||||
VERSION = "1.19.2";
|
VERSION = "1.20.2";
|
||||||
MEMORY = "4G";
|
MEMORY = "4G";
|
||||||
TYPE = "FABRIC";
|
TYPE = "FABRIC";
|
||||||
FABRIC_LOADER_VERSION = "0.14.23";
|
FABRIC_LOADER_VERSION = "0.14.23";
|
||||||
|
|
Loading…
Reference in a new issue