comin is a NixOS deployment tool operating in pull mode

This commit is contained in:
Lucy von Overheidt 2025-09-14 00:54:21 +02:00
parent d3ee9f7205
commit 43b68d7d75
3 changed files with 52 additions and 0 deletions

26
README.md Normal file
View file

@ -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 ?

13
modules/comin.nix Normal file
View file

@ -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";
}
];
};
}

13
modules/podman.nix Normal file
View file

@ -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;
};
};
}