grafana translates nix to ini now

This commit is contained in:
niten 2022-12-08 16:26:34 -08:00
parent 9e1387c6d9
commit 69541726aa
1 changed files with 8 additions and 3 deletions

View File

@ -249,9 +249,14 @@ in {
org_role = "Viewer" org_role = "Viewer"
''; '';
in { in {
AUTH_LDAP_ENABLED = "true"; auth.ldap = {
AUTH_LDAP_ALLOW_SIGN_UP = "true"; enabled = true;
AUTH_LDAP_CONFIG_FILE = config-file; allow_sign_up = true;
config_file = config-file;
};
# AUTH_LDAP_ENABLED = "true";
# AUTH_LDAP_ALLOW_SIGN_UP = "true";
# AUTH_LDAP_CONFIG_FILE = config-file;
}); });
database = { database = {