Evie Litherland-Smith
a1c28e779a
Remove jupyter service and qbittorrent traefik route Add ntfy-sh (enabled) and initial grafana (not enabled) expressions Change services to call own traefik expression, rather than needing to be called explicitly
22 lines
505 B
Nix
22 lines
505 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ../traefik/gitea.nix ];
|
|
services.gitea = {
|
|
enable = true;
|
|
settings = {
|
|
server = {
|
|
ROOT_URL = "https://git.xenia.me.uk";
|
|
DOMAIN = "git.xenia.me.uk";
|
|
DISABLE_SSH = true;
|
|
};
|
|
service.DISABLE_REGISTRATION = true;
|
|
ui = {
|
|
THEMES =
|
|
"auto,gitea,arc-green,catppuccin-latte-lavender,catppuccin-frappe-lavender,catppuccin-macchiato-lavender,catppuccin-mocha-lavender";
|
|
};
|
|
};
|
|
appName = "Gitea";
|
|
};
|
|
}
|