Enable LFS support for Gitea
This commit is contained in:
parent
a0d6fdd5b8
commit
e83ce4b350
|
@ -1,6 +1,6 @@
|
||||||
# Software development configuration
|
|
||||||
{ config, pkgs, lib, ... }: {
|
{ config, pkgs, lib, ... }: {
|
||||||
# Gitea setup with daily backup
|
|
||||||
|
# Set up Gitea with LFS support
|
||||||
services.gitea = {
|
services.gitea = {
|
||||||
enable = true;
|
enable = true;
|
||||||
domain = "git.coolneng.duckdns.org";
|
domain = "git.coolneng.duckdns.org";
|
||||||
|
@ -13,6 +13,6 @@
|
||||||
disableRegistration = true;
|
disableRegistration = true;
|
||||||
repositoryRoot = "/vault/git";
|
repositoryRoot = "/vault/git";
|
||||||
appName = "Gitea";
|
appName = "Gitea";
|
||||||
dump = { enable = false; };
|
lfs.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue