nicks-nix-config/hosts/Alaska/modules/forgejo.nix

38 lines
878 B
Nix

{ config, lib, pkgs, ... }:
{
home.file."/Aurora/Forgejo/custom" = {
source = ../../../rscs/giteaCustomDir;
recursive = true;
};
services.gitea = {
enable = true;
package = pkgs.forgejo;
stateDir = "/Aurora/Forgejo";
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";
};
};
};
}