zion/modules/devops.nix

19 lines
478 B
Nix
Raw Normal View History

2019-11-16 10:55:10 +01:00
# Software development configuration
2020-08-24 15:07:55 +02:00
{ config, pkgs, lib, ... }: {
2019-11-16 10:55:10 +01:00
# Gitea setup with daily backup
services.gitea = {
enable = true;
2020-08-24 15:07:55 +02:00
domain = "git.coolneng.duckdns.org";
rootUrl = "https://git.coolneng.duckdns.org";
2019-11-16 10:55:10 +01:00
database = {
type = "postgres";
passwordFile = "/var/keys/gitea/db";
};
cookieSecure = true;
2019-11-16 17:54:06 +01:00
disableRegistration = true;
2019-11-16 10:55:10 +01:00
repositoryRoot = "/vault/git";
appName = "Gitea";
2020-08-24 15:07:55 +02:00
dump = { enable = false; };
2019-11-16 10:55:10 +01:00
};
}