Skip to content

Commit

Permalink
fix: syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Swarsel committed Oct 18, 2024
1 parent e581769 commit 1a25138
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions profiles/server/common/monitoring.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,21 @@
sops.secrets = {
grafanaadminpass = {
owner = "grafana";
}
}
};
};
users.users.grafana = {
extraGroups = [ "users" ];
};

services.grafana = {
enable = true;
dataDir = "/Vault/data/grafana";
admin_password = "$__file{/run/secrets/grafanaadminpass}";
settings = {
http_port = 3000;
http_addr = "127.0.0.1";
security.admin_password = "$__file{/run/secrets/grafanaadminpass}";
server = {
http_port = 3000;
http_addr = "127.0.0.1";
};
};
};

Expand Down

0 comments on commit 1a25138

Please sign in to comment.