mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
# self-hosted git service
|
|
{ config, lib, ... }:
|
|
let
|
|
cfg = config.my.services.gitea;
|
|
domain = config.networking.domain;
|
|
in
|
|
{
|
|
options.my.services.gitea = with lib; {
|
|
enable = mkEnableOption "Gitea";
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 3042;
|
|
example = 8080;
|
|
description = "Internal port";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services.gitea = {
|
|
enable = true;
|
|
httpPort = cfg.port;
|
|
rootUrl = "https://code.${domain}";
|
|
settings = {
|
|
session.COOKIE_SECURE = true;
|
|
service.DISABLE_REGISTRATION = true;
|
|
ui.DEFAULT_THEME = "arc-green";
|
|
log.LEVEL = "Warn";
|
|
};
|
|
lfs.enable = true;
|
|
};
|
|
|
|
# Proxy to Gitea
|
|
my.services.nginx.virtualHosts = [
|
|
{
|
|
subdomain = "code";
|
|
inherit (cfg) port;
|
|
}
|
|
];
|
|
|
|
my.services.backup = {
|
|
paths = [
|
|
config.services.gitea.lfs.contentDir
|
|
config.services.gitea.repositoryRoot
|
|
];
|
|
};
|
|
|
|
webapps.apps.gitea = {
|
|
dashboard = {
|
|
name = "Code";
|
|
category = "app";
|
|
icon = "code-branch";
|
|
link = "https://code.${domain}";
|
|
};
|
|
};
|
|
};
|
|
}
|