nixos/elasticsearch: use `types.port`

h7x4 b6d0fa4e 7c06f217

Changed files
+1 -1
nixos
modules
services
+1 -1
nixos/modules/services/search/elasticsearch.nix
···
tcp_port = mkOption {
description = "Elasticsearch port for the node to node communication.";
default = 9300;
-
type = types.int;
+
type = types.port;
};
cluster_name = mkOption {