infrastructure/config/services/ha.nix
2022-07-10 13:59:00 -07:00

21 lines
369 B
Nix

{ config, ... }: {
services.home-assistant = {
enable = true;
config = null;
extraComponents = [
"zha"
"esphome"
"met"
"default_config"
"google"
"google_assistant"
"google_cloud"
"google_translate"
"homekit"
"zeroconf"
"luci"
];
};
network.firewall.public.tcp.ports = [ 8123 ];
}