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 {