summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-04-13 11:14:02 +0100
committerGitHub <noreply@github.com>2018-04-13 11:14:02 +0100
commit0cb8413b02ce3479f1df0e6dbb7eb29e904a308a (patch)
treeacce98ae0ac88637386dfa7744d29014f2d9da59 /nixos
parentae1318043b89e66f3eff28a31ebe03db80d2623b (diff)
parented6f1761ccbd8635a9c53dd7743b656d5f60d62c (diff)
downloadnixlib-0cb8413b02ce3479f1df0e6dbb7eb29e904a308a.tar
nixlib-0cb8413b02ce3479f1df0e6dbb7eb29e904a308a.tar.gz
nixlib-0cb8413b02ce3479f1df0e6dbb7eb29e904a308a.tar.bz2
nixlib-0cb8413b02ce3479f1df0e6dbb7eb29e904a308a.tar.lz
nixlib-0cb8413b02ce3479f1df0e6dbb7eb29e904a308a.tar.xz
nixlib-0cb8413b02ce3479f1df0e6dbb7eb29e904a308a.tar.zst
nixlib-0cb8413b02ce3479f1df0e6dbb7eb29e904a308a.zip
Merge pull request #38885 from lopsided98/grafana-unix-socket
grafana: support socket protocol
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/monitoring/grafana.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix
index a5b6dbab1577..eceb91525db4 100644
--- a/nixos/modules/services/monitoring/grafana.nix
+++ b/nixos/modules/services/monitoring/grafana.nix
@@ -50,7 +50,7 @@ in {
     protocol = mkOption {
       description = "Which protocol to listen.";
       default = "http";
-      type = types.enum ["http" "https"];
+      type = types.enum ["http" "https" "socket"];
     };
 
     addr = mkOption {