summary refs log tree commit diff
path: root/nixos/modules/services/monitoring
diff options
context:
space:
mode:
authorDaniel Nagy <danielnagy@posteo.de>2021-06-18 17:27:31 +0200
committerDaniel Nagy <danielnagy@posteo.de>2021-06-18 17:27:31 +0200
commit044d996906707a7e1ff6569caef7d32c9760a809 (patch)
treec72578081d01798221194c6169906a061565718d /nixos/modules/services/monitoring
parentc7264556878408f2359d335d2c9cc58ba4ab44a7 (diff)
downloadnixpkgs-044d996906707a7e1ff6569caef7d32c9760a809.tar
nixpkgs-044d996906707a7e1ff6569caef7d32c9760a809.tar.gz
nixpkgs-044d996906707a7e1ff6569caef7d32c9760a809.tar.bz2
nixpkgs-044d996906707a7e1ff6569caef7d32c9760a809.tar.lz
nixpkgs-044d996906707a7e1ff6569caef7d32c9760a809.tar.xz
nixpkgs-044d996906707a7e1ff6569caef7d32c9760a809.tar.zst
nixpkgs-044d996906707a7e1ff6569caef7d32c9760a809.zip
nixos/grafana: use `port` type
Diffstat (limited to 'nixos/modules/services/monitoring')
-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 c3e1f72945b..e0b2624b6ca 100644
--- a/nixos/modules/services/monitoring/grafana.nix
+++ b/nixos/modules/services/monitoring/grafana.nix
@@ -292,7 +292,7 @@ in {
     port = mkOption {
       description = "Listening port.";
       default = 3000;
-      type = types.int;
+      type = types.port;
     };
 
     socket = mkOption {