From aba1a41d4df2a598dc4f672f3bfe84f0dd43bd86 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Thu, 23 May 2024 04:07:19 +0100 Subject: [PATCH] fix: file permissions --- applications/grafana.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/applications/grafana.nix b/applications/grafana.nix index 6d27d40..a1c67b7 100644 --- a/applications/grafana.nix +++ b/applications/grafana.nix @@ -49,7 +49,11 @@ in { "${name}.skynet.ie" ]; - age.secrets.grafana_pw.file = ../secrets/grafana/pw.age; + age.secrets.grafana_pw = { + file = ../secrets/grafana/pw.age; + owner = "grafana"; + group = "grafana"; + }; services.grafana = { enable = true;