From 4f924111a48eb8bda5c8ab39428ebdad606d2a3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 8 May 2026 00:28:50 +0200 Subject: [PATCH] nixos/home-assistant: add pico2wave to path when it is required --- nixos/modules/services/home-automation/home-assistant.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/home-automation/home-assistant.nix b/nixos/modules/services/home-automation/home-assistant.nix index 6de14687cfae..58443428c73a 100644 --- a/nixos/modules/services/home-automation/home-assistant.nix +++ b/nixos/modules/services/home-automation/home-assistant.nix @@ -1043,7 +1043,10 @@ in ]; UMask = "0077"; }; - path = with pkgs; lib.optionals (any useComponent componentsUsingPing) [ unixtools.ping ]; + path = + with pkgs; + lib.optionals (useComponent "picotts") [ pkgs.picotts ] + ++ lib.optionals (any useComponent componentsUsingPing) [ unixtools.ping ]; }; systemd.targets.home-assistant = rec {