9 lines
201 B
Nix
9 lines
201 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.co2_exporter = {
|
|
enable = true;
|
|
listenAddress = "${config.sbruder.wireguard.home.address}:9672"; # uses port numer of unrelated co2 exporter to avoid 8080
|
|
};
|
|
}
|