From a89a812aaf13fb7c9ceac61bcb9287b6a834ac3c Mon Sep 17 00:00:00 2001 From: buffet Date: Mon, 3 Jun 2024 09:11:50 +0200 Subject: [PATCH] refactor: sort forgejo config --- hosts/ami/forgejo.nix | 51 ++++++++++++++++++++++++++----------------- 1 file changed, 31 insertions(+), 20 deletions(-) diff --git a/hosts/ami/forgejo.nix b/hosts/ami/forgejo.nix index d06fea7..5ffcf95 100644 --- a/hosts/ami/forgejo.nix +++ b/hosts/ami/forgejo.nix @@ -10,10 +10,21 @@ in { enable = true; package = pkgs.unstable.forgejo; settings = { - DEFAULT.APP_NAME = "buffet's kitchen"; - admin.SEND_NOTIFICATION_EMAIL_ON_NEW_USER = true; - cron.ENABLED = true; - federation.ENABLED = true; + DEFAULT = { + APP_NAME = "buffet's kitchen"; + }; + + admin = { + SEND_NOTIFICATION_EMAIL_ON_NEW_USER = true; + }; + + cron = { + ENABLED = true; + }; + + federation = { + ENABLED = true; + }; mailer = { ENABLED = true; @@ -22,6 +33,22 @@ in { SENDMAIL_PATH = "${pkgs.system-sendmail}/bin/sendmail"; }; + "markup.asciidoc" = { + ENABLED = true; + NEED_POSTPROCESS = true; + FILE_EXTENSIONS = ".adoc,.asciidoc"; + RENDER_COMMAND = ''"${pkgs.asciidoctor}/bin/asciidoctor -e --safe-mode=secure -a showtitle --out-file=- -"''; + IS_INPUT_FILE = false; + }; + + "markup.restructuredtext" = { + ENABLED = true; + NEED_POSTPROCESS = true; + FILE_EXTENSIONS = ".rst"; + RENDER_COMMAND = ''"timeout 30s ${pkgs.pandoc}/bin/pandoc +RTS -M512M -RTS -f rst"''; + IS_INPUT_FILE = false; + }; + repository = { ENABLE_PUSH_CREATE_USER = true; ENABLE_PUSH_CREATE_ORG = true; @@ -38,22 +65,6 @@ in { DISABLE_REGISTRATION = true; ENABLE_NOTIFY_MAIL = true; }; - - "markup.asciidoc" = { - ENABLED = true; - NEED_POSTPROCESS = true; - FILE_EXTENSIONS = ".adoc,.asciidoc"; - RENDER_COMMAND = ''"${pkgs.asciidoctor}/bin/asciidoctor -e --safe-mode=secure -a showtitle --out-file=- -"''; - IS_INPUT_FILE = false; - }; - - "markup.restructuredtext" = { - ENABLED = true; - NEED_POSTPROCESS = true; - FILE_EXTENSIONS = ".rst"; - RENDER_COMMAND = ''"timeout 30s ${pkgs.pandoc}/bin/pandoc +RTS -M512M -RTS -f rst"''; - IS_INPUT_FILE = false; - }; }; };