added secret handling, so the wireguard network stuff is unnecessary
Some checks failed
/ Check formatting (push) Failing after 1s
Some checks failed
/ Check formatting (push) Failing after 1s
This commit is contained in:
parent
ec71077ddb
commit
95d419d9e4
4 changed files with 16 additions and 13 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
glucose.modules = [
|
||||
{
|
||||
({config, lib, ...}: {
|
||||
services.grafana = {
|
||||
enable = true;
|
||||
dataDir = "/var/services/grafana";
|
||||
|
@ -10,7 +10,10 @@
|
|||
# analytics = {};
|
||||
# database = {};
|
||||
# paths = {};
|
||||
# security = {};
|
||||
security = {
|
||||
admin_user = "$__file" + "{${config.sops.secrets.grafana_admin_account.path}}";
|
||||
admin_password = "$__file" + "{${config.sops.secrets.grafana_admin_pass.path}}";
|
||||
};
|
||||
server = {
|
||||
root_url = "https://grf.collective-conciousness.monster";
|
||||
enable_gzip = true;
|
||||
|
@ -27,6 +30,6 @@
|
|||
datasources = {};
|
||||
};*/
|
||||
};
|
||||
}
|
||||
})
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue