nixosTests.home-assistant: Test more components

This commit is contained in:
Martin Weinelt 2023-04-28 21:36:30 +02:00
parent d5edd07a01
commit 9ebb469697
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -61,6 +61,13 @@ in {
# https://www.home-assistant.io/integrations/frontend/ # https://www.home-assistant.io/integrations/frontend/
frontend = {}; frontend = {};
# include some popular integrations, that absolutely shouldn't break
esphome = {};
knx = {};
matter = {};
shelly = {};
zha = {};
# set up a wake-on-lan switch to test capset capability required # set up a wake-on-lan switch to test capset capability required
# for the ping suid wrapper # for the ping suid wrapper
# https://www.home-assistant.io/integrations/wake_on_lan/ # https://www.home-assistant.io/integrations/wake_on_lan/
@ -107,7 +114,7 @@ in {
# Cause a configuration change that requires a service restart as we added a new runtime dependency # Cause a configuration change that requires a service restart as we added a new runtime dependency
specialisation.newFeature = { specialisation.newFeature = {
inheritParentConfig = true; inheritParentConfig = true;
configuration.services.home-assistant.config.esphome = {}; configuration.services.home-assistant.config.backup = {};
}; };
}; };