Compare commits
2 commits
abde4d7935
...
ab0c9b8735
Author | SHA1 | Date | |
---|---|---|---|
ab0c9b8735 | |||
a89a812aaf |
1 changed files with 36 additions and 21 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,23 +33,6 @@ in {
|
||||||
SENDMAIL_PATH = "${pkgs.system-sendmail}/bin/sendmail";
|
SENDMAIL_PATH = "${pkgs.system-sendmail}/bin/sendmail";
|
||||||
};
|
};
|
||||||
|
|
||||||
repository = {
|
|
||||||
ENABLE_PUSH_CREATE_USER = true;
|
|
||||||
ENABLE_PUSH_CREATE_ORG = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
server = {
|
|
||||||
DOMAIN = "buffets.kitchen";
|
|
||||||
ROOT_URL = "https://buffets.kitchen/";
|
|
||||||
HTTP_PORT = port;
|
|
||||||
LANDING_PAGE = "/kitchen";
|
|
||||||
};
|
|
||||||
|
|
||||||
service = {
|
|
||||||
DISABLE_REGISTRATION = true;
|
|
||||||
ENABLE_NOTIFY_MAIL = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
"markup.asciidoc" = {
|
"markup.asciidoc" = {
|
||||||
ENABLED = true;
|
ENABLED = true;
|
||||||
NEED_POSTPROCESS = true;
|
NEED_POSTPROCESS = true;
|
||||||
|
@ -54,6 +48,27 @@ in {
|
||||||
RENDER_COMMAND = ''"timeout 30s ${pkgs.pandoc}/bin/pandoc +RTS -M512M -RTS -f rst"'';
|
RENDER_COMMAND = ''"timeout 30s ${pkgs.pandoc}/bin/pandoc +RTS -M512M -RTS -f rst"'';
|
||||||
IS_INPUT_FILE = false;
|
IS_INPUT_FILE = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
repository = {
|
||||||
|
ENABLE_PUSH_CREATE_USER = true;
|
||||||
|
ENABLE_PUSH_CREATE_ORG = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
"repository.pull-request" = {
|
||||||
|
DEFAULT_MERGE_STYLE = "rebase";
|
||||||
|
};
|
||||||
|
|
||||||
|
server = {
|
||||||
|
DOMAIN = "buffets.kitchen";
|
||||||
|
ROOT_URL = "https://buffets.kitchen/";
|
||||||
|
HTTP_PORT = port;
|
||||||
|
LANDING_PAGE = "/kitchen";
|
||||||
|
};
|
||||||
|
|
||||||
|
service = {
|
||||||
|
DISABLE_REGISTRATION = true;
|
||||||
|
ENABLE_NOTIFY_MAIL = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue