Merge branch 'nixos/statsd/statsd_port_fix' of git://github.com/offlinehacker/nixpkgs

nixos/statsd: change default host and port on graphite host and port
This commit is contained in:
Shea Levy 2014-03-19 18:00:49 -04:00
commit ca81e38178

View File

@ -64,13 +64,13 @@ in
graphiteHost = mkOption {
description = "Hostname or IP of Graphite server";
default = "127.0.0.1";
default = config.services.graphite.web.host;
type = types.str;
};
graphitePort = mkOption {
description = "Port of Graphite server";
default = 2003;
default = config.services.graphite.web.port;
type = types.uniq types.int;
};