summaryrefslogtreecommitdiff
path: root/modules/nixfiles/grafana.nix
blob: c29bf75d26bdeb00ca8a13ac14b334260befa96a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
  config,
  inputs,
  lib,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.grafana;
in {
  options.nixfiles.modules.grafana = {
    enable = mkEnableOption "Grafana";

    port = mkOption {
      description = "Port.";
      type = with types; port;
      default = 30101;
    };

    domain = mkOption {
      description = "Domain name sans protocol scheme.";
      type = with types; nullOr str;
      default = "grafana.${config.networking.domain}";
    };
  };

  config = mkIf cfg.enable {
    secrets = {
      grafana-admin-password = {
        file = "${inputs.self}/secrets/grafana-admin-password";
        owner = "grafana";
        group = "grafana";
      };
      grafana-key = {
        file = "${inputs.self}/secrets/grafana-key";
        owner = "grafana";
        group = "grafana";
      };
    };

    nixfiles.modules = {
      nginx = {
        enable = true;
        upstreams.grafana.servers."127.0.0.1:${toString cfg.port}" = {};
        virtualHosts.${cfg.domain}.locations."/" = {
          proxyPass = "http://grafana";
          proxyWebsockets = true;
          extraConfig = nginxInternalOnly;
        };
      };
      postgresql.enable = true;
    };

    services = let
      db = "grafana";
    in {
      grafana = {
        enable = true;

        inherit (cfg) domain port;
        protocol = "http";
        addr = "127.0.0.1";

        analytics.reporting.enable = false;

        database = {
          type = "postgres";
          host = "/run/postgresql";
          name = db;
          user = db;
        };

        security = with config.secrets; {
          secretKeyFile = grafana-key.path;
          adminPasswordFile = grafana-admin-password.path;
        };

        extraOptions.LOG_LEVEL = "warn";
      };

      postgresql = {
        ensureDatabases = [db];
        ensureUsers = [
          {
            name = db;
            ensurePermissions."DATABASE \"${db}\"" = "ALL PRIVILEGES";
          }
        ];
      };
    };
  };
}