summaryrefslogtreecommitdiff
path: root/hosts/p-body/grafana.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/p-body/grafana.nix')
-rw-r--r--hosts/p-body/grafana.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/hosts/p-body/grafana.nix b/hosts/p-body/grafana.nix
deleted file mode 100644
index dcc97d1..0000000
--- a/hosts/p-body/grafana.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{config, ...}: let
- inherit (config.networking) domain;
-in {
- services.grafana = {
- enable = true;
- settings = {
- "auth.anonymous" = {
- enabled = true;
- hide_version = true;
- org_name = "getchoosystems";
- org_role = "Viewer";
- };
-
- server = {
- http_addr = "127.0.0.1";
- http_port = 4000;
- domain = "grafana.${domain}";
- };
-
- feature_toggles = {
- publicDashboards = true;
- };
- };
- };
-}