zion/modules/devops.nix

30 lines
643 B
Nix
Raw Normal View History

2019-11-16 10:55:10 +01:00
# Software development configuration
{ config, pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [
gitea
2019-11-25 14:29:04 +01:00
git-lfs
2019-11-16 10:55:10 +01:00
];
# Gitea setup with daily backup
services.gitea = {
enable = true;
domain = "coolneng.duckdns.org";
rootUrl = "https://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";
dump.enable = true;
2019-11-16 17:54:06 +01:00
useWizard = true;
2019-11-25 14:29:04 +01:00
extraConfig = ''
LFS_START_SERVER = true
LFS_CONTENT_PATH = /var/lib/gitea/data/lfs
'';
2019-11-16 10:55:10 +01:00
};
}