10 lines
188 B
Nix
10 lines
188 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.prometheus.exporters.fritzbox = {
|
|
enable = true;
|
|
gatewayAddress = "192.168.100.1";
|
|
listenAddress = config.sbruder.wireguard.home.address;
|
|
};
|
|
}
|