nix-config/modules/nixos-modules/server/home-assistant/extensions/wyoming.nix

9 lines
191 B
Nix

{
lib,
config,
...
}:
lib.mkIf (config.services.home-assistant.extensions.wyoming.enable) {
services.home-assistant.extraComponents = ["wyoming"];
services.wyoming.enable = true;
}