hass esphome

This commit is contained in:
mjallen18
2026-03-14 12:36:49 -05:00
parent 4f4b7865eb
commit 996571a544

View File

@@ -0,0 +1,21 @@
{
config,
lib,
namespace,
...
}:
with lib;
let
cfg = config.${namespace}.services.home-assistant;
in
{
config = mkIf cfg.enable {
services = {
esphome = {
enable = true;
openFirewall = true; # 6052
address = "0.0.0.0";
};
};
};
}