2023-10-28 19:46:18 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
2023-10-28 21:55:39 +00:00
|
|
|
flake,
|
2023-10-28 19:46:18 +00:00
|
|
|
...
|
|
|
|
}: {
|
|
|
|
age.secrets.forgejo-database-password = {
|
2023-10-28 21:55:39 +00:00
|
|
|
file = "${flake.self}/secrets/forgejo-database-password.age";
|
2023-10-28 19:46:18 +00:00
|
|
|
mode = "600";
|
|
|
|
owner = "gitea";
|
|
|
|
};
|
|
|
|
|
|
|
|
age.secrets.forgejo-mailer-password = {
|
2023-10-28 21:55:39 +00:00
|
|
|
file = "${flake.self}/secrets/forgejo-mailer-password.age";
|
2023-10-28 19:46:18 +00:00
|
|
|
mode = "600";
|
|
|
|
owner = "gitea";
|
|
|
|
};
|
|
|
|
|
|
|
|
services.nginx.virtualHosts."git.pub.solar" = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
|
|
|
|
locations."/user/login".extraConfig = ''
|
|
|
|
return 302 /user/oauth2/keycloak;
|
|
|
|
'';
|
|
|
|
|
2023-10-29 22:04:33 +00:00
|
|
|
locations."/" = {
|
|
|
|
proxyPass = "http://127.0.0.1:3000";
|
|
|
|
extraConfig = ''
|
|
|
|
client_max_body_size 1G;
|
|
|
|
'';
|
|
|
|
};
|
2023-10-28 19:46:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
services.gitea = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.forgejo;
|
|
|
|
appName = "pub.solar git server";
|
|
|
|
database = {
|
|
|
|
type = "postgres";
|
|
|
|
passwordFile = config.age.secrets.forgejo-database-password.path;
|
|
|
|
};
|
|
|
|
stateDir = "/var/lib/forgejo";
|
|
|
|
lfs.enable = true;
|
|
|
|
mailerPasswordFile = config.age.secrets.forgejo-mailer-password.path;
|
|
|
|
settings = {
|
|
|
|
server = {
|
|
|
|
ROOT_URL = "https://git.pub.solar";
|
|
|
|
DOMAIN = "git.pub.solar";
|
|
|
|
HTTP_ADDR = "127.0.0.1";
|
|
|
|
HTTP_PORT = 3000;
|
|
|
|
};
|
2023-12-08 16:09:32 +00:00
|
|
|
|
2023-10-29 01:48:51 +00:00
|
|
|
log.LEVEL = "Warn";
|
2023-12-08 16:09:32 +00:00
|
|
|
|
2023-10-28 19:46:18 +00:00
|
|
|
mailer = {
|
|
|
|
ENABLED = true;
|
|
|
|
PROTOCOL = "smtps";
|
2023-12-05 17:23:04 +00:00
|
|
|
SMTP_ADDR = "mail.greenbaum.zone";
|
2023-10-28 19:46:18 +00:00
|
|
|
SMTP_PORT = 465;
|
|
|
|
FROM = ''"pub.solar git server" <forgejo@pub.solar>'';
|
|
|
|
USER = "admins@pub.solar";
|
|
|
|
};
|
2023-12-08 16:09:32 +00:00
|
|
|
|
2023-10-28 19:46:18 +00:00
|
|
|
"repository.signing" = {
|
|
|
|
SIGNING_KEY = "default";
|
|
|
|
MERGES = "always";
|
|
|
|
};
|
2023-12-08 16:09:32 +00:00
|
|
|
|
2023-10-28 19:46:18 +00:00
|
|
|
openid = {
|
|
|
|
ENABLE_OPENID_SIGNIN = true;
|
|
|
|
ENABLE_OPENID_SIGNUP = true;
|
|
|
|
};
|
2023-12-08 16:09:32 +00:00
|
|
|
|
2023-11-05 12:46:09 +00:00
|
|
|
service = {
|
|
|
|
# uncomment after initial deployment, first user is admin user
|
|
|
|
# required to setup SSO (oauth openid-connect, keycloak auth provider)
|
|
|
|
ALLOW_ONLY_EXTERNAL_REGISTRATION = true;
|
|
|
|
ENABLE_NOTIFY_MAIL = true;
|
|
|
|
DEFAULT_KEEP_EMAIL_PRIVATE = true;
|
|
|
|
};
|
2023-12-08 16:09:32 +00:00
|
|
|
|
2023-11-05 12:46:09 +00:00
|
|
|
session = {
|
2023-11-06 21:34:51 +00:00
|
|
|
PROVIDER = "db";
|
2023-11-05 12:46:09 +00:00
|
|
|
COOKIE_SECURE = lib.mkForce true;
|
|
|
|
};
|
2023-12-08 16:09:32 +00:00
|
|
|
|
|
|
|
# https://forgejo.org/docs/latest/admin/config-cheat-sheet/#webhook-webhook
|
|
|
|
webhook = {
|
|
|
|
ALLOWED_HOST_LIST = [
|
|
|
|
"loopback"
|
|
|
|
"external"
|
|
|
|
"*.pub.solar"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-10-29 22:52:33 +00:00
|
|
|
# See https://forgejo.org/docs/latest/admin/actions/
|
2023-12-08 16:09:32 +00:00
|
|
|
actions = {
|
|
|
|
ENABLED = true;
|
|
|
|
# In an actions workflow, when uses: does not specify an absolute URL,
|
|
|
|
# the value of DEFAULT_ACTIONS_URL is prepended to it.
|
|
|
|
DEFAULT_ACTIONS_URL = "https://code.forgejo.org";
|
|
|
|
};
|
2023-10-28 19:46:18 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# See: https://docs.gitea.io/en-us/signing/#installing-and-generating-a-gpg-key-for-gitea
|
|
|
|
# Required for gitea server side gpg signatures
|
|
|
|
# configured/setup manually in:
|
|
|
|
# /var/lib/gitea/data/home/.gitconfig
|
|
|
|
# /var/lib/gitea/data/home/.gnupg/
|
|
|
|
# sudo su gitea
|
|
|
|
# export GNUPGHOME=/var/lib/gitea/data/home/.gnupg
|
|
|
|
# gpg --quick-gen-key 'pub.solar gitea <gitea@pub.solar>' ed25519
|
|
|
|
# TODO: implement declarative GPG key generation and
|
|
|
|
# gitea gitconfig
|
|
|
|
programs.gnupg.agent = {
|
|
|
|
enable = true;
|
|
|
|
pinentryFlavor = "curses";
|
|
|
|
};
|
|
|
|
# Required to make gpg work without a graphical environment?
|
|
|
|
# otherwise generating a new gpg key fails with this error:
|
|
|
|
# gpg: agent_genkey failed: No pinentry
|
|
|
|
# see: https://github.com/NixOS/nixpkgs/issues/97861#issuecomment-827951675
|
|
|
|
environment.variables = {
|
|
|
|
GPG_TTY = "$(tty)";
|
|
|
|
};
|
2023-11-05 21:54:09 +00:00
|
|
|
|
2023-11-18 21:28:12 +00:00
|
|
|
services.restic.backups.forgejo-droppie = {
|
2023-11-05 21:54:09 +00:00
|
|
|
paths = [
|
|
|
|
"/var/lib/forgejo"
|
|
|
|
"/tmp/forgejo-backup.sql"
|
|
|
|
];
|
2023-11-05 22:47:06 +00:00
|
|
|
timerConfig = {
|
|
|
|
OnCalendar = "*-*-* 02:00:00 Etc/UTC";
|
|
|
|
# droppie will be offline if nachtigall misses the timer
|
|
|
|
Persistent = false;
|
|
|
|
};
|
|
|
|
initialize = true;
|
|
|
|
passwordFile = config.age.secrets."restic-repo-droppie".path;
|
2023-11-06 21:58:48 +00:00
|
|
|
repository = "sftp:yule@droppie.b12f.io:/media/internal/pub.solar";
|
2023-11-05 21:54:09 +00:00
|
|
|
backupPrepareCommand = ''
|
2023-11-06 21:22:36 +00:00
|
|
|
${pkgs.sudo}/bin/sudo -u postgres ${pkgs.postgresql}/bin/pg_dump -d gitea > /tmp/forgejo-backup.sql
|
2023-11-05 21:54:09 +00:00
|
|
|
'';
|
|
|
|
backupCleanupCommand = ''
|
|
|
|
rm /tmp/forgejo-backup.sql
|
|
|
|
'';
|
|
|
|
};
|
2023-11-18 21:28:12 +00:00
|
|
|
|
|
|
|
services.restic.backups.forgejo-storagebox = {
|
|
|
|
paths = [
|
|
|
|
"/var/lib/forgejo"
|
|
|
|
"/tmp/forgejo-backup.sql"
|
|
|
|
];
|
|
|
|
timerConfig = {
|
2023-11-18 21:41:48 +00:00
|
|
|
OnCalendar = "*-*-* 04:20:00 Etc/UTC";
|
2023-11-18 21:28:12 +00:00
|
|
|
};
|
|
|
|
initialize = true;
|
|
|
|
passwordFile = config.age.secrets."restic-repo-storagebox".path;
|
|
|
|
repository = "sftp:u377325@u377325.your-storagebox.de:/backups";
|
|
|
|
backupPrepareCommand = ''
|
|
|
|
${pkgs.sudo}/bin/sudo -u postgres ${pkgs.postgresql}/bin/pg_dump -d gitea > /tmp/forgejo-backup.sql
|
|
|
|
'';
|
|
|
|
backupCleanupCommand = ''
|
|
|
|
rm /tmp/forgejo-backup.sql
|
|
|
|
'';
|
|
|
|
};
|
2023-10-28 19:46:18 +00:00
|
|
|
}
|