fix(hass): add missing modules for tts and to fix some warnings
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
520f7441d9
commit
e422f95bb4
1 changed files with 11 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
}: {
|
||||
imports = [self.nixosModules.wyoming-plus];
|
||||
|
||||
# TODO: some components / integrations / addons require manual interaction in the GUI, find way to make it all declarative
|
||||
services = {
|
||||
home-assistant = {
|
||||
enable = true;
|
||||
|
@ -13,6 +14,7 @@
|
|||
extraComponents = [
|
||||
"esphome"
|
||||
"holiday"
|
||||
"isal"
|
||||
"met"
|
||||
"ollama"
|
||||
"spotify"
|
||||
|
@ -26,12 +28,21 @@
|
|||
};
|
||||
|
||||
config = {
|
||||
# Proxy settings
|
||||
http = {
|
||||
server_host = "0.0.0.0";
|
||||
trusted_proxies = ["100.64.0.8" "100.64.0.9"];
|
||||
use_x_forwarded_for = true;
|
||||
};
|
||||
|
||||
# Extra conf that was needed
|
||||
media_source = {};
|
||||
|
||||
# GUI
|
||||
lovelace = {
|
||||
mode = "yaml";
|
||||
};
|
||||
|
||||
# Wanted defaults
|
||||
assist_pipeline = {};
|
||||
config = {};
|
||||
|
|
Loading…
Reference in a new issue