Enable LFS support for Gitea

This commit is contained in:
coolneng 2020-10-28 00:39:54 +01:00
parent a0d6fdd5b8
commit e83ce4b350
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Software development configuration
{ config, pkgs, lib, ... }: {
# Gitea setup with daily backup
# Set up Gitea with LFS support
services.gitea = {
enable = true;
domain = "git.coolneng.duckdns.org";
@ -13,6 +13,6 @@
disableRegistration = true;
repositoryRoot = "/vault/git";
appName = "Gitea";
dump = { enable = false; };
lfs.enable = true;
};
}