mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
nixos/statsd: change default host and port on graphite host and port
This commit is contained in:
parent
086afe9161
commit
bd5c0c3bc7
@ -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;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user