From 54dee8bf0413da8d9c61e0939c2b162e4ff87c21 Mon Sep 17 00:00:00 2001 From: notohh Date: Mon, 19 Jun 2023 08:18:30 -0400 Subject: [PATCH] postgres: init grafana --- hosts/arashi/services/postgresql.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/arashi/services/postgresql.nix b/hosts/arashi/services/postgresql.nix index e27e232..396c183 100644 --- a/hosts/arashi/services/postgresql.nix +++ b/hosts/arashi/services/postgresql.nix @@ -36,11 +36,16 @@ name = "miniflux"; ensurePermissions."DATABASE miniflux" = "ALL PRIVILEGES"; } + { + name = "grafana"; + ensurePermissions."DATABASE grafana" = "ALL PRIVILEGES"; + } ]; ensureDatabases = [ "forgejo" "hedgedoc" "miniflux" + "grafana" ]; }; }