added secret handling, so the wireguard network stuff is unnecessary
Some checks failed
/ Check formatting (push) Failing after 1s

This commit is contained in:
Ittihadyya 2024-12-20 16:10:19 +02:00
parent ec71077ddb
commit 95d419d9e4
4 changed files with 16 additions and 13 deletions

View file

@ -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 = {};
};*/
};
}
})
];
}