chore: remove empty hass configs

the nixos wiki claims that empty component config blocks are deprecated:
https://nixos.wiki/wiki/Home_Assistant#Using_components_without_YAML_configuration
This commit is contained in:
arcnmx 2022-10-05 10:41:50 -07:00
parent 0f53321c62
commit 7a17249b9b

View file

@ -104,38 +104,6 @@
platform = "google_translate";
service_name = "google_say";
}];
automation = {};
counter = {};
device_tracker = {};
energy = {};
group = {};
history = {};
image = {};
input_boolean = {};
input_datetime = {};
input_number = {};
input_select = {};
input_text = {};
logbook = {};
map = {};
media_source = {};
mobile_app = {};
my = {};
person = {};
scene = {};
script = {};
ssdp = {};
switch = {};
stream = {};
sun = {};
system_health = {};
tag = {};
template = {};
timer = {};
webhook = {};
wake_on_lan = {};
zeroconf = {};
zone = {};
};
extraPackages = python3Packages: with python3Packages; [
psycopg2
@ -144,6 +112,36 @@
(aiogithubapi.overrideAttrs (_: { doInstallCheck = false; }))
];
extraComponents = [
"automation"
"counter"
"device_tracker"
"energy"
"group"
"history"
"image"
"input_boolean"
"input_datetime"
"input_number"
"input_select"
"input_text"
"logbook"
"map"
"media_source"
"mobile_app"
"my"
"person"
"scene"
"script"
"ssdp"
"switch"
"stream"
"sun"
"system_health"
"tag"
"template"
"timer"
"webhook"
"zone"
"zha"
"esphome"
"apple_tv"