12 lines
238 B
Nix
12 lines
238 B
Nix
{ pkgs, ... } : {
|
|
services.zabbixAgent = {
|
|
enable = true;
|
|
package = pkgs.zabbix.agent;
|
|
server = "10.6.0.1";
|
|
settings = {
|
|
ServerActive = "10.6.0.18";
|
|
};
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ 10050 ];
|
|
} |