adding integrations to homeassistant

This commit is contained in:
Richie Cahill 2024-08-12 18:32:17 -04:00
parent 4c1465811a
commit 0bbb592ff5
2 changed files with 36 additions and 3 deletions

View File

@ -8,6 +8,7 @@
"acpid", "acpid",
"adbusers", "adbusers",
"ahci", "ahci",
"aioesphomeapi",
"alicehuston", "alicehuston",
"alsa", "alsa",
"amdgpu", "amdgpu",
@ -66,6 +67,7 @@
"enableemail", "enableemail",
"errorlens", "errorlens",
"esbenp", "esbenp",
"esphome",
"extest", "extest",
"fastforwardteam", "fastforwardteam",
"FASTFOX", "FASTFOX",
@ -90,6 +92,7 @@
"gamescope", "gamescope",
"globalprivacycontrol", "globalprivacycontrol",
"gparted", "gparted",
"gtts",
"healthreport", "healthreport",
"hexeditor", "hexeditor",
"hicolor", "hicolor",
@ -106,6 +109,7 @@
"INITDB", "INITDB",
"ioit", "ioit",
"iperf", "iperf",
"isal",
"jmgilman", "jmgilman",
"jnoortheen", "jnoortheen",
"jobset", "jobset",
@ -184,11 +188,13 @@
"PRIVOXY", "PRIVOXY",
"prowlarr", "prowlarr",
"proxychains", "proxychains",
"prusa",
"psycopg", "psycopg",
"PUID", "PUID",
"pulseaudio", "pulseaudio",
"punycode", "punycode",
"pylance", "pylance",
"pymetno",
"qbit", "qbit",
"qbittorrent", "qbittorrent",
"qbittorrentvpn", "qbittorrentvpn",
@ -226,6 +232,7 @@
"sponsorblock", "sponsorblock",
"spotifyd", "spotifyd",
"sqltools", "sqltools",
"ssdp",
"sshconfig", "sshconfig",
"stdenv", "stdenv",
"subresource", "subresource",
@ -272,6 +279,7 @@
"xhci", "xhci",
"xwayland", "xwayland",
"yzhang", "yzhang",
"zeroconf",
"zerotier", "zerotier",
"zerotierone", "zerotierone",
"zhaofengli", "zhaofengli",

View File

@ -10,15 +10,40 @@
"192.168.90.35" "192.168.90.35"
"192.168.98.4" "192.168.98.4"
]; ];
use_x_forwarded_for = true;
trusted_proxies = "172.100.0.4";
}; };
homeassistant = { homeassistant = {
time_zone = "America/New_York"; time_zone = "America/New_York";
unit_system = "imperial"; unit_system = "imperial";
temperature_unit = "F"; temperature_unit = "F";
longitude = 40.74;
latitude = 74.03;
}; };
assist_pipeline = { };
backup = { };
bluetooth = { };
config = { };
dhcp = { };
energy = { };
history = { };
homeassistant_alerts = { };
image_upload = { };
logbook = { };
media_source = { };
mobile_app = { };
ssdp = { };
sun = { };
webhook = { };
zeroconf = { };
}; };
extraPackages = python3Packages: with python3Packages; [ psycopg2 ]; extraPackages =
python3Packages: with python3Packages; [
psycopg2
gtts
aioesphomeapi
esphome-dashboard-api
bleak-esphome
pymetno
];
extraComponents = [ "isal" ];
}; };
} }