fixed missing option

This commit is contained in:
chloe 2024-08-12 16:06:40 +02:00
parent 1b6a88bc93
commit ba3dfa1528

View file

@ -10,22 +10,21 @@
database = { database = {
type = "postgres"; type = "postgres";
}; };
settings = {
server = { server = {
DOMAIN = "git.hypervirtual.world"; DOMAIN = "git.hypervirtual.world";
ROOT_URL = "https://hypervirtual.world"; ROOT_URL = "https://hypervirtual.world";
HTTP_PORT = 3000; HTTP_PORT = 3000;
}; };
actions = { actions = {
ENABLED = true; ENABLED = true;
DEFAULT_ACTIONS_URL = "github"; DEFAULT_ACTIONS_URL = "github";
}; };
mailer = { mailer = {
ENABLED = true; ENABLED = true;
SMTP_ADDR = config.sops.secrets.smtp_address; SMTP_ADDR = config.sops.secrets.smtp_address;
}; };
};
mailerPasswordFile = config.sops.secrets.smtp_password.path; mailerPasswordFile = config.sops.secrets.smtp_password.path;
}; };
} }