1
0

Sync with upstream module updates

This commit is contained in:
dump_stack() 2024-06-24 10:12:16 +00:00
parent 45710c9a76
commit 7f0b8a15f8
Signed by: dump_stack
GPG Key ID: C9905BA72B5E02BB

View File

@ -40,27 +40,30 @@ in {
services.gitea = {
enable = true;
appName = "${hostname}";
domain = "${hostname}";
rootUrl = "https://${hostname}";
disableRegistration = true;
settings = {
"ui" = {
DEFAULT_THEME = "gitea";
server = {
root_url = "https://${hostname}";
domain = "${hostname}";
};
"attachment" = {
ENABLED = true;
ALLOWED_TYPES = "*/*";
service = {
disable_registration = true;
};
"other" = {
SHOW_FOOTER_VERSION = false;
attachment = {
enabled = false;
};
other = {
show_footer_version = false;
};
repository = {
signing = {
default_trust_model = "committer";
};
"repository.signing" = {
DEFAULT_TRUST_MODEL = "committer";
};
};
};
security.acme.email = "letsencrypt@dumpstack.io";
security.acme.defaults.email = "letsencrypt@dumpstack.io";
security.acme.acceptTerms = true;
services.nginx = {