Add selfhosted services

This commit is contained in:
aloslider
2026-06-30 04:26:40 +03:00
parent f212c874b5
commit 13e407847f
78 changed files with 2346 additions and 690 deletions
@@ -0,0 +1,11 @@
{ config, ... }:
let
cfg = config.selfhosted.gitea;
in
{
sops.templates."gitea-db.env".content = ''
POSTGRES_DB=gitea
POSTGRES_USER=gitea
POSTGRES_PASSWORD=${config.sops.placeholder."gitea/db_password"}
'';
}