nixos/statsd: change default host and port on graphite host and port

This commit is contained in:
Jaka Hudoklin 2014-03-10 11:01:38 +01:00
parent 086afe9161
commit bd5c0c3bc7

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;
};