summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2019-10-29 17:16:12 +0100
committerJeschli <jeschli@gmail.com>2019-11-14 15:36:11 +0100
commitf4ebd3b3d110a29ba8d5f0ef5fc80518feae47b4 (patch)
treeb6d934a3f714bdd660b7d27f10e869ec8b59879c
parente2055f8e81e19c7cc6ea150bd4e8d4c1015fb685 (diff)
ma bureautomation: set service name for google_say to fix regression
-rw-r--r--makefu/2configs/bureautomation/default.nix18
1 files changed, 10 insertions, 8 deletions
diff --git a/makefu/2configs/bureautomation/default.nix b/makefu/2configs/bureautomation/default.nix
index d745d894..48c4c0b8 100644
--- a/makefu/2configs/bureautomation/default.nix
+++ b/makefu/2configs/bureautomation/default.nix
@@ -47,8 +47,14 @@ in {
elevation = 303;
auth_providers = [
{ type = "homeassistant";}
- { type = "legacy_api_password";}
+ # { type = "legacy_api_password";}
{ type = "trusted_networks";
+ trusted_networks = [
+ "127.0.0.1/32"
+ "192.168.8.0/24"
+ "::1/128"
+ "fd00::/8"
+ ];
# allow_bypass_login = true;
}
];
@@ -141,19 +147,15 @@ in {
# TODO: https://github.com/home-assistant/home-assistant/issues/16149
base_url = "http://192.168.8.11:8123";
api_password = "sistemas";
- trusted_networks = [
- "127.0.0.1/32"
- "192.168.8.0/24"
- "::1/128"
- "fd00::/8"
- ];
};
conversation = {};
history = {};
logbook = {};
tts = [
- { platform = "google";
+ { platform = "google_translate";
language = "de";
+ time_memory = 57600;
+ service_name = "google_say";
}
{ platform = "voicerss";
api_key = builtins.readFile <secrets/hass/voicerss.apikey>;