rename nodes and add runner for gitea instance

This commit is contained in:
shobu
2025-11-11 21:05:47 +01:00
parent c610ce80bc
commit 542034054c
34 changed files with 69 additions and 24 deletions

View File

@@ -0,0 +1,23 @@
{lib, ...}: let
ssh_port = 24658;
in {
services = {
gitea = {
enable = true;
settings = {
server = {
DOMAIN = "git.shobu.fr";
SSH_PORT = ssh_port;
ROOT_URL = "https://git.shobu.fr";
};
service = {
REGISTER_EMAIL_CONFIRM = false;
REGISTER_MANUAL_CONFIRM = true;
};
actions = {
ENABLED = true;
};
};
};
};
}