Initial commit

This commit is contained in:
AXOLOTsh
2026-01-28 11:41:51 +03:00
commit c1d66293aa
52 changed files with 817 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ pkgs, ... } : {
services.zabbixAgent = {
enable = true;
package = pkgs.zabbix.agent;
server = "10.6.0.1";
settings = {
ServerActive = "10.6.0.18";
};
};
networking.firewall.allowedTCPPorts = [ 10050 ];
}