blob: 1e42779f09de57072319ca4ee2d2c8ed35df0176 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{lib, ... }:
{
services.prometheus.exporters.unifi = {
enable = true;
unifiAddress = "https://unifi.shack:8443/";
unifiInsecure = true;
unifiUsername = "prometheus"; # needed manual login after setup to confirm the password
unifiPassword = lib.replaceStrings ["\n"] [""] (builtins.readFile "${config.krebs.secret.directory}/shack/unifi-prometheus-pw");
};
}
|