raspite/hass: drop default_config, add deepseek agent
This commit is contained in:
parent
f275df95e5
commit
22bbe06513
1 changed files with 26 additions and 1 deletions
|
@ -4,12 +4,32 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = false;
|
openFirewall = false;
|
||||||
config = {
|
config = {
|
||||||
default_config = { };
|
|
||||||
http = {
|
http = {
|
||||||
server_host = "127.0.0.1";
|
server_host = "127.0.0.1";
|
||||||
use_x_forwarded_for = true;
|
use_x_forwarded_for = true;
|
||||||
trusted_proxies = [ "127.0.0.1" ];
|
trusted_proxies = [ "127.0.0.1" ];
|
||||||
};
|
};
|
||||||
|
assist_pipeline = { };
|
||||||
|
backup = { };
|
||||||
|
bluetooth = { };
|
||||||
|
config = { };
|
||||||
|
conversation = { };
|
||||||
|
history = { };
|
||||||
|
recorder = {
|
||||||
|
purge_keep_days = 14;
|
||||||
|
};
|
||||||
|
homeassistant_alerts = { };
|
||||||
|
image_upload = { };
|
||||||
|
logbook = { };
|
||||||
|
media_source = { };
|
||||||
|
mobile_app = { };
|
||||||
|
my = { };
|
||||||
|
ssdp = { };
|
||||||
|
stream = { };
|
||||||
|
sun = { };
|
||||||
|
usb = { };
|
||||||
|
webhook = { };
|
||||||
|
zeroconf = { };
|
||||||
};
|
};
|
||||||
extraPackages =
|
extraPackages =
|
||||||
python3Packages: with python3Packages; [
|
python3Packages: with python3Packages; [
|
||||||
|
@ -20,9 +40,14 @@
|
||||||
extraComponents = [
|
extraComponents = [
|
||||||
"mqtt"
|
"mqtt"
|
||||||
"roborock"
|
"roborock"
|
||||||
|
"openai_conversation"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
systemd.services.home-assistant.environment = {
|
||||||
|
OPENAI_BASE_URL = "https://api.deepseek.com/v1";
|
||||||
|
};
|
||||||
|
|
||||||
services.esphome = {
|
services.esphome = {
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = false;
|
openFirewall = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue