nixos/nixos/modules/webapps/gitea.nix
2022-07-23 20:11:20 +02:00

22 lines
441 B
Nix

{ config, pkgs, ... }:
{
services.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 = "https://git.buehler.rocks";
};
};
}