From 054ff0ec3b88277bee7770ba9e43edba4f52aa15 Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Sun, 3 Aug 2025 23:27:17 +0300 Subject: [PATCH] Add grafana to the eko group so it can access the db --- nixosModules/eko.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixosModules/eko.nix b/nixosModules/eko.nix index e52a932..9993752 100644 --- a/nixosModules/eko.nix +++ b/nixosModules/eko.nix @@ -26,7 +26,7 @@ ]; # Allow grafana access to the sqlite db - users.users.eko.extraGroups = [ "grafana" ]; + users.users.grafana.extraGroups = [ "eko" ]; systemd.services.grafana = { serviceConfig = { ProtectHome = lib.mkForce false;