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];
|
imports = [self.nixosModules.wyoming-plus];
|
||||||
|
|
||||||
|
# TODO: some components / integrations / addons require manual interaction in the GUI, find way to make it all declarative
|
||||||
services = {
|
services = {
|
||||||
home-assistant = {
|
home-assistant = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -13,6 +14,7 @@
|
||||||
extraComponents = [
|
extraComponents = [
|
||||||
"esphome"
|
"esphome"
|
||||||
"holiday"
|
"holiday"
|
||||||
|
"isal"
|
||||||
"met"
|
"met"
|
||||||
"ollama"
|
"ollama"
|
||||||
"spotify"
|
"spotify"
|
||||||
|
@ -26,12 +28,21 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
# Proxy settings
|
||||||
http = {
|
http = {
|
||||||
server_host = "0.0.0.0";
|
server_host = "0.0.0.0";
|
||||||
trusted_proxies = ["100.64.0.8" "100.64.0.9"];
|
trusted_proxies = ["100.64.0.8" "100.64.0.9"];
|
||||||
use_x_forwarded_for = true;
|
use_x_forwarded_for = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Extra conf that was needed
|
||||||
|
media_source = {};
|
||||||
|
|
||||||
|
# GUI
|
||||||
|
lovelace = {
|
||||||
|
mode = "yaml";
|
||||||
|
};
|
||||||
|
|
||||||
# Wanted defaults
|
# Wanted defaults
|
||||||
assist_pipeline = {};
|
assist_pipeline = {};
|
||||||
config = {};
|
config = {};
|
||||||
|
|
Loading…
Reference in a new issue