mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-09 07:00:21 +02:00
fixed missing option
This commit is contained in:
parent
1b6a88bc93
commit
ba3dfa1528
1 changed files with 14 additions and 15 deletions
|
@ -1,7 +1,7 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
sops.secrets.smtp_address = {};
|
sops.secrets.smtp_address = { };
|
||||||
sops.secrets.smtp_password = {};
|
sops.secrets.smtp_password = { };
|
||||||
|
|
||||||
services.forgejo = {
|
services.forgejo = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -10,22 +10,21 @@
|
||||||
database = {
|
database = {
|
||||||
type = "postgres";
|
type = "postgres";
|
||||||
};
|
};
|
||||||
server = {
|
settings = {
|
||||||
DOMAIN = "git.hypervirtual.world";
|
server = {
|
||||||
ROOT_URL = "https://hypervirtual.world";
|
DOMAIN = "git.hypervirtual.world";
|
||||||
HTTP_PORT = 3000;
|
ROOT_URL = "https://hypervirtual.world";
|
||||||
};
|
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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue