dump
All checks were successful
Hello World / test (push) Successful in 12s

This commit is contained in:
plasmagoat 2025-07-05 11:12:20 +02:00
parent 4ed9ba0d24
commit a90630ecb6
98 changed files with 2063 additions and 729 deletions

View file

@ -1,12 +1,15 @@
{ lib, pkgs, config, ... }:
let
{
lib,
pkgs,
config,
...
}: let
cfg = config.services.forgejo;
srv = cfg.settings.server;
domain = "git.procopius.dk";
ssh_domain = "gitssh.procopius.dk";
in
{
users.users.plasmagoat.extraGroups = [ "forgejo" ];
in {
users.users.plasmagoat.extraGroups = ["forgejo"];
services.forgejo = {
enable = true;
@ -25,6 +28,15 @@ in
SSH_PORT = 2222;
SSH_DOMAIN = ssh_domain;
};
mailer = {
ENABLED = true;
FROM = "git@procopius.dk";
PROTOCOL = "smtp+starttls";
SMTP_ADDR = "mail.procopius.dk";
USER = "admin@procopius.dk";
PASSWD = "mikael";
};
database = {
DB_TYPE = lib.mkForce "postgres";
HOST = "/run/postgresql";
@ -33,12 +45,23 @@ in
};
service = {
DISABLE_REGISTRATION = true;
# ENABLE_INTERNAL_SIGNIN = false;
ENABLE_NOTIFY_MAIL = true;
};
metrics = {
ENABLED = true;
ENABLED_ISSUE_BY_REPOSITORY = true;
ENABLED_ISSUE_BY_LABEL = true;
};
actions = {
ZOMBIE_TASK_TIMEOUT = "30m";
};
oauth2 = {
};
oauth2_client = {
ENABLE_AUTO_REGISTRATION = true;
UPDATE_AVATAR = true;
};
# log = {
# ROOT_PATH = "/var/log/forgejo";
# MODE = "file";
@ -63,5 +86,5 @@ in
'';
# Optional: firewall
networking.firewall.allowedTCPPorts = [ 3000 2222 ];
networking.firewall.allowedTCPPorts = [3000 2222];
}