11 lines
355 B
Nix
11 lines
355 B
Nix
{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.replaceChars ["\n"] [""] (builtins.readFile <secrets/shack/unifi-prometheus-pw>);
|
|
};
|
|
}
|