This commit is contained in:
shobu
2025-09-18 08:28:44 +02:00
commit 265e09d77a
35 changed files with 2532 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{lib, ...}: let
ssh_port = 24658;
in {
services = {
gitea = {
enable = true;
settings = {
server = {
DOMAIN = "git.shobu.fr";
SSH_PORT = ssh_port;
};
};
};
};
}