Compare commits
No commits in common. "ab0c9b87357d2255d0910db10ccf69aebbbf1dc2" and "abde4d7935220630246186536f7ec5f0b0975765" have entirely different histories.
ab0c9b8735
...
abde4d7935
1 changed files with 21 additions and 36 deletions
|
@ -10,21 +10,10 @@ 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;
|
||||
|
@ -33,6 +22,23 @@ in {
|
|||
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" = {
|
||||
ENABLED = true;
|
||||
NEED_POSTPROCESS = true;
|
||||
|
@ -48,27 +54,6 @@ in {
|
|||
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;
|
||||
};
|
||||
|
||||
"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