newton: initial gitea

This commit is contained in:
Felix Buehler 2022-07-03 13:26:49 +02:00
parent 789d2a4c98
commit f869cac21f

View file

@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
gitea = {
enable = true;
cookieSecure = true;
httpPort = 3001;
rootUrl = "https://git.buehler.rocks/";
log.level = "Warn";
disableRegistration = true;
settings = {
ui.DEFAULT_THEME = "arc-green";
};
};
webapps.apps.gitea = {
dashboard = {
name = "Git";
category = "app";
icon = "git";
link = "http://git.buehler.rocks";
};
};
}