diff --git a/README.md b/README.md new file mode 100644 index 0000000..271f5e7 --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +# Game Servers running + +# Networking stuff + +- expose ip to public wifi + +# OpenArena +contact: bARB, johannes + + +- mehrere CTF Server ~ 4 Server + + +- Insta CTF +- alle Waffen CTF +- Free For All (c-base map) +- Insta alle Waffen + +# Minecraft +contact: ? + +- Modpack +- ohne Modpack + +# riot ? + diff --git a/modules/comin.nix b/modules/comin.nix new file mode 100644 index 0000000..f049003 --- /dev/null +++ b/modules/comin.nix @@ -0,0 +1,13 @@ +{ ... }: +{ + services.comin = { + enable = true; + remotes = [ + { + name = "origin"; + url = "https://code.c-base.org/lucy/games-night.git"; + branches.main.name = "master"; + } + ]; + }; +} diff --git a/modules/podman.nix b/modules/podman.nix new file mode 100644 index 0000000..9d27cf6 --- /dev/null +++ b/modules/podman.nix @@ -0,0 +1,13 @@ +{ ... }: +{ + virtualisation.containers.enable = true; + virtualisation = { + podman = { + enable = true; + # Create a `docker` alias for podman, to use it as a drop-in replacement + dockerCompat = true; + # Required for containers under podman-compose to be able to talk to each other. + defaultNetwork.settings.dns_enabled = true; + }; + }; +}