os/modules/home-controller/monitoring-client.nix
2023-10-06 00:01:55 +02:00

14 lines
198 B
Nix

{
config,
pkgs,
lib,
...
}: let
cfg = config.pub-solar.home-controller;
in {
pub-solar.monitoring-client = lib.mkIf cfg.enable {
enable = true;
listenAddress = cfg.ownIp;
};
}