From 6e762653def5b5794c6ab75c5e55af95158ef0f0 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Fri, 26 Jul 2019 15:49:28 +0200 Subject: module zabbixProxy: server is a mandatory parameter --- nixos/modules/services/monitoring/zabbix-proxy.nix | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'nixos/modules/services') diff --git a/nixos/modules/services/monitoring/zabbix-proxy.nix b/nixos/modules/services/monitoring/zabbix-proxy.nix index c1a45fba4af3..9cfcd1697c11 100644 --- a/nixos/modules/services/monitoring/zabbix-proxy.nix +++ b/nixos/modules/services/monitoring/zabbix-proxy.nix @@ -23,6 +23,7 @@ let LogType = console ListenIP = ${cfg.listen.ip} ListenPort = ${toString cfg.listen.port} + Server = ${cfg.server} # TODO: set to cfg.database.socket if database type is pgsql? DBHost = ${optionalString (cfg.database.createLocally != true) cfg.database.host} ${optionalString (cfg.database.createLocally != true) "DBPort = ${cfg.database.port}"} @@ -50,6 +51,13 @@ in services.zabbixProxy = { enable = mkEnableOption "the Zabbix Proxy"; + server = mkOption { + type = types.str; + description = '' + The IP address or hostname of the Zabbix server to connect to. + ''; + }; + package = mkOption { type = types.package; default = -- cgit 1.4.1