refactor: sort forgejo config
This commit is contained in:
parent
3d72a6ff9a
commit
f54c7f1d5f
1 changed files with 31 additions and 20 deletions
|
@ -10,10 +10,21 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.unstable.forgejo;
|
package = pkgs.unstable.forgejo;
|
||||||
settings = {
|
settings = {
|
||||||
DEFAULT.APP_NAME = "buffet's kitchen";
|
DEFAULT = {
|
||||||
admin.SEND_NOTIFICATION_EMAIL_ON_NEW_USER = true;
|
APP_NAME = "buffet's kitchen";
|
||||||
cron.ENABLED = true;
|
};
|
||||||
federation.ENABLED = true;
|
|
||||||
|
admin = {
|
||||||
|
SEND_NOTIFICATION_EMAIL_ON_NEW_USER = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
cron = {
|
||||||
|
ENABLED = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
federation = {
|
||||||
|
ENABLED = true;
|
||||||
|
};
|
||||||
|
|
||||||
mailer = {
|
mailer = {
|
||||||
ENABLED = true;
|
ENABLED = true;
|
||||||
|
@ -22,6 +33,22 @@ in {
|
||||||
SENDMAIL_PATH = "${pkgs.system-sendmail}/bin/sendmail";
|
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 = {
|
repository = {
|
||||||
ENABLE_PUSH_CREATE_USER = true;
|
ENABLE_PUSH_CREATE_USER = true;
|
||||||
ENABLE_PUSH_CREATE_ORG = true;
|
ENABLE_PUSH_CREATE_ORG = true;
|
||||||
|
@ -38,22 +65,6 @@ in {
|
||||||
DISABLE_REGISTRATION = true;
|
DISABLE_REGISTRATION = true;
|
||||||
ENABLE_NOTIFY_MAIL = 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;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue