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 8457319696
Signed by: dump_stack
GPG Key ID: C9905BA72B5E02BB

View File

@ -11,7 +11,6 @@ in {
];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/vda";
swapDevices = [
@ -40,18 +39,19 @@ 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" = {
attachment = {
ENABLED = false;
};
other = {
SHOW_FOOTER_VERSION = false;
};
"repository.signing" = {
@ -60,7 +60,7 @@ in {
};
};
security.acme.email = "letsencrypt@dumpstack.io";
security.acme.defaults.email = "letsencrypt@dumpstack.io";
security.acme.acceptTerms = true;
services.nginx = {