1
Fork 0
nixos-system-config/packages/forgejo/dirae.nix

71 lines
2 KiB
Nix
Raw Normal View History

2023-07-19 22:25:34 +02:00
{ pkgs, config, lib, ... }: let
# theme = builtins.fetchurl {
# url = "";
# sha256 = "";
# };
in
{
# systemd.services.gitea.preStart = lib.mkAfter ''
# mkdir -p ${config.services.gitea.stateDir}/custom/public/css
# cp -f ${theme} ${config.services.gitea.stateDir}/custom/public/css/
# '';
services.gitea = {
enable = true;
package = pkgs.forgejo;
appName = "git.dirae.org";
settings = {
service = {
DISABLE_REGISTRATION = true;
};
server = {
DOMAIN = "git.dirae.org";
ROOT_URL = "https://git.dirae.org";
HTTP_PORT = 3001;
};
ui = {
THEMES = ''
forgejo-auto,forgejo-light,forgejo-dark,auto,gitea,arc-green
'';
DEFAULT_THEME = "forgejo-dark";
2023-07-22 01:48:37 +02:00
user = {
REPO_PAGING_NUM = 50;
};
meta = {
AUTHOR = "dirae.org Forgejo instance";
DESCRIPTION = "Forgejo instance hosting git repositories for dirae.org";
2023-07-22 01:49:50 +02:00
KEYWORDS = "go,git,self-hosted,gitea,forgejo,foss,oss,decentrialised,federation";
2023-07-22 01:48:37 +02:00
};
2023-07-19 22:25:34 +02:00
};
repository = {
DEFAULT_BRANCH = "master";
2023-07-22 01:48:37 +02:00
DISABLE_STARS = true;
ENABLE_PUSH_CREATE_USER = true;
2023-07-22 01:51:07 +02:00
DEFAULT_REPO_UNITS = ''
2023-07-22 01:48:37 +02:00
repo.code,repo.releases,repo.issues,repo.pulls
'';
2023-07-22 01:50:27 +02:00
PREFERRED_LICENSES="GPL-3.0-or-later,AGPL-3.0-or-later";
2023-07-19 22:25:34 +02:00
};
};
database = {
type = "postgres";
passwordFile = "/var/keys/gitea/db";
};
};
services.postgresql = {
enable = true;
authentication = ''
local gitea all ident map=gitea-users
'';
identMap = ''
gitea-users gitea gitea
'';
};
}