nixos/wyoming/openwakeword: fix typo in attribute name

This commit is contained in:
Martin Weinelt 2023-10-31 00:42:04 +01:00
parent b4c72e070b
commit e3647a1769
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -123,7 +123,7 @@ in
"${cfg.package}/bin/wyoming-openwakeword"
"--uri ${cfg.uri}"
(concatMapStringsSep " " (model: "--preload-model ${model}") cfg.preloadModels)
(concatMapStringsSep " " (dir: "--custom-model-dir ${toString dir}") cfg.customModelDirectories)
(concatMapStringsSep " " (dir: "--custom-model-dir ${toString dir}") cfg.customModelsDirectories)
"--threshold ${cfg.threshold}"
"--trigger-level ${cfg.triggerLevel}"
"${cfg.extraArgs}"