aboutsummaryrefslogtreecommitdiff
path: root/hosts/common/server
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/server')
-rw-r--r--hosts/common/server/grafana.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/hosts/common/server/grafana.nix b/hosts/common/server/grafana.nix
new file mode 100644
index 0000000..b2d7841
--- /dev/null
+++ b/hosts/common/server/grafana.nix
@@ -0,0 +1,9 @@
+{ config, lib, pkgs, ... }:
+
+{
+ grafana = {
+ enable = true;
+ # Bind to all interfaces.
+ addr = "";
+ };
+}