mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-25 02:14:41 +02:00
22 lines
441 B
Nix
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";
|
|
};
|
|
};
|
|
}
|