mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
21 lines
369 B
Nix
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 ];
|
|
}
|