11 lines
257 B
Nix
11 lines
257 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
lib.mkIf (config.services.home-assistant.extensions.sonos.enable) {
|
|
services.home-assistant.extraComponents = ["sonos"];
|
|
networking.firewall.allowedTCPPorts = [
|
|
config.services.home-assistant.extensions.sonos.port
|
|
];
|
|
}
|