added docs

This commit is contained in:
Vivian 2022-09-25 23:49:26 +02:00
parent f61d27d774
commit 8a1538dde9
15 changed files with 120 additions and 630 deletions

View file

@ -51,5 +51,14 @@ let vs = config.vault-secrets.secrets; in
authUrl = "https://id.0x76.dev/realms/master/protocol/openid-connect/auth";
clientSecretFile = "${vs.outline}/keycloakClientSecret";
};
smtp = rec {
username = "outline@0x76.dev";
fromEmail = username;
replyEmail = username;
secure = true;
port = 465;
host = "mail.0x76.dev";
passwordFile = "${vs.outline}/mailPassword";
};
};
}