services: add gitea

This commit is contained in:
Alexandre Cavalheiro 2024-08-19 20:33:05 -03:00
parent 10aa3c6c9a
commit 98ff3c4dd8
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
2 changed files with 15 additions and 0 deletions

View file

@ -23,6 +23,7 @@ in
# Include service configuration
./services/archi.nix
./services/caddy.nix
./services/gitea.nix
./services/jellyfin.nix
./services/minecraft
];

14
services/gitea.nix Normal file
View file

@ -0,0 +1,14 @@
{
services.gitea = {
enable = true;
lfs.enable = true;
settings = {
server = {
HTTP_PORT = 3788;
ROOT_URL = "https://git.thewizard.link";
};
};
};
}