mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
35 lines
813 B
Nix
35 lines
813 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.gitea = {
|
|
enable = true;
|
|
package = pkgs.forgejo;
|
|
stateDir = "/Aurora/Forgejo";
|
|
customDir = ../../../rscs/giteaCustomDir;
|
|
appName = "Nickiel's Repos";
|
|
|
|
settings = {
|
|
|
|
#ui.DEFAULT_THEME = "arc-green";
|
|
# Enable this after the first user has been created
|
|
service.DISABLE_REGISTRATION = true;
|
|
|
|
#session.COOKIE_SECURE = true;
|
|
# external facing ui
|
|
server = {
|
|
ROOT_URL = "https://git.nickiel.net";
|
|
HTTP_PORT = 3001;
|
|
DOMAIN = "git.nickiel.net";
|
|
LANDING_PAGE = "/explore/repos";
|
|
};
|
|
|
|
mailer = {
|
|
ENABLED = true;
|
|
MAILER_TYPE = "sendmail";
|
|
FROM = "noreply@nickiel.net";
|
|
SENDMAIL_PATH = "${pkgs.system-sendmail}/bin/sendmail";
|
|
};
|
|
};
|
|
};
|
|
}
|