This commit is contained in:
parent
4c1917ef24
commit
1fd04521c8
3 changed files with 21 additions and 6 deletions
|
@ -11,12 +11,24 @@
|
|||
# declarativePlugins = null;
|
||||
|
||||
settings = {
|
||||
# analytics = {};
|
||||
# database = {};
|
||||
analytics = {
|
||||
check_for_plugin_updates = false;
|
||||
check_for_updates = false;
|
||||
feedback_links_enabled = false;
|
||||
reporting_enabled = false;
|
||||
};
|
||||
|
||||
database = {
|
||||
host = "10.24.1.9:5432";
|
||||
type = "postgres";
|
||||
name = "grafanadb";
|
||||
user = "grafana";
|
||||
password = lib.mkForce builtins.concatStringsSep "" ["$__file" "{${config.sops.secrets.grafana_db_pass}}"];
|
||||
};
|
||||
# paths = {};
|
||||
security = {
|
||||
admin_user = builtins.concatStringsSep "" ["$__file" "{${config.sops.secrets.grafana_admin_account.path}}"];
|
||||
admin_password = builtins.concatStringsSep "" ["$__file" "{${config.sops.secrets.grafana_admin_pass.path}}"];
|
||||
admin_user = lib.mkForce builtins.concatStringsSep "" ["$__file" "{${config.sops.secrets.grafana_admin_account.path}}"];
|
||||
admin_password = lib.mkForce builtins.concatStringsSep "" ["$__file" "{${config.sops.secrets.grafana_admin_pass.path}}"];
|
||||
};
|
||||
server = {
|
||||
root_url = "https://grf.collective-conciousness.monster";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue