nixos-config/modules/services/home-assistant.nix

17 lines
359 B
Nix
Raw Normal View History

2025-04-19 00:13:35 +02:00
{
services.home-assistant = {
enable = true;
extraComponents = [
# Components required to complete the onboarding
"esphome"
"met"
"radio_browser"
];
config = {
# Includes dependencies for a basic setup
# https://www.home-assistant.io/integrations/default_config/
default_config = { };
};
};
}