Files
homelab/modules/gitea/sin/default.nix
Sin Ser'hao 56ffeaf5a0
Some checks failed
/ perform flake analysis (push) Successful in 37s
/ build hive configuration (push) Failing after 8m50s
format && add nix-serve for caching
2026-01-07 15:29:28 +01:00

26 lines
448 B
Nix

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