nixos-config/services/gitea/default.nix

105 lines
2.7 KiB
Nix
Raw Normal View History

2021-02-02 16:55:19 +01:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.my.services.gitea;
my = config.my;
domain = config.networking.domain;
in {
options.my.services.gitea = {
enable = mkEnableOption "Personal Git hosting with Gitea";
privatePort = mkOption {
2021-02-02 18:24:28 +01:00
type = types.port;
2021-02-02 16:55:19 +01:00
default = 8082;
example = 8082;
description = "Port to serve the app";
};
};
config = mkIf cfg.enable {
# use git as user to have `git clone git@git.domain`
users.users.git = {
description = "Gitea Service";
home = config.services.gitea.stateDir;
useDefaultShell = true;
group = "git";
# the systemd service for the gitea module seems to hardcode the group as
# gitea, so, uh, just in case?
extraGroups = [ "gitea" ];
isSystemUser = true;
};
users.groups.git = { };
services.gitea = {
enable = true;
user = "git";
domain = "git.${domain}";
appName = "Personal Forge";
rootUrl = "https://git.${domain}/";
httpAddress = "127.0.0.1";
httpPort = cfg.privatePort;
2021-04-09 18:01:01 +02:00
log.level = "Warn"; # [ "Trace" "Debug" "Info" "Warn" "Error" "Critical" ]
2021-02-02 16:55:19 +01:00
lfs.enable = true;
# NOTE: temporarily remove this for initial setup
disableRegistration = true;
# only send cookies via HTTPS
cookieSecure = true;
settings = {
other.SHOW_FOOTER_VERSION = false;
2021-04-09 19:43:51 +02:00
repository = {
ENABLE_PUSH_CREATE_USER = true;
};
2021-02-02 16:55:19 +01:00
};
2021-02-02 18:09:10 +01:00
# NixOS module uses `gitea dump` to backup repositories and the database,
# but it produces a single .zip file that's not very borg-backup friendly.
# I configure my backup system manually below.
dump.enable = false;
2021-02-02 16:55:19 +01:00
database = {
type = "postgres";
# user needs to be the same as gitea user
user = "git";
};
};
2021-02-02 18:09:10 +01:00
# FIXME: Borg *could* be backing up files while they're being edited by
# gitea, so it may produce corrupt files in the snapshot if I push stuff
# around midnight. I'm not sure how `gitea dump` handles this either,
# though.
my.services.borg-backup = {
2021-02-02 18:09:10 +01:00
paths = [
config.services.gitea.lfs.contentDir
config.services.gitea.repositoryRoot
];
};
2021-03-23 22:24:12 +01:00
services.postgresqlBackup = {
2021-02-02 18:09:10 +01:00
databases = [ "gitea" ];
2021-02-02 16:55:19 +01:00
};
services.nginx = {
virtualHosts = {
"git.${domain}" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.1:${toString cfg.privatePort}";
};
};
};
};
2021-04-09 16:53:05 +02:00
systemd.services.gitea.preStart = "${pkgs.coreutils}/bin/ln -sfT ${./templates} ${config.services.gitea.stateDir}/custom/templates";
2021-02-02 16:55:19 +01:00
};
}