From 8bf3f9e96af4bd58a2b30dcd20d04cd5c6e4584d Mon Sep 17 00:00:00 2001 From: ryan Date: Sat, 2 Aug 2025 21:01:45 -0700 Subject: [PATCH] Update HA dev config to use existing mqtt.home broker - Remove mosquitto from flake (use existing broker) - Point dev config to mqtt.home instead of localhost - Cleaner setup using your existing MQTT infrastructure --- dev-config/configuration.yaml | 4 ++-- flake.nix | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/dev-config/configuration.yaml b/dev-config/configuration.yaml index 0fc89d9..f7d6348 100644 --- a/dev-config/configuration.yaml +++ b/dev-config/configuration.yaml @@ -24,9 +24,9 @@ system_health: # Enable mobile app support mobile_app: -# MQTT Configuration (connect to local broker) +# MQTT Configuration (connect to existing mqtt.home broker) mqtt: - broker: localhost + broker: mqtt.home port: 1883 discovery: true discovery_prefix: homeassistant diff --git a/flake.nix b/flake.nix index b982862..a6d08a6 100644 --- a/flake.nix +++ b/flake.nix @@ -49,7 +49,6 @@ # Home Assistant for development home-assistant - mosquitto ]; shellHook = '' @@ -58,7 +57,7 @@ echo "Python: $(python --version)" echo "Home Assistant: $(hass --version)" echo "" - echo "Available tools: pytest, black, isort, flake8, mypy, mosquitto" + echo "Available tools: pytest, black, isort, flake8, mypy" echo "" echo "Directories:" echo " server/ - Elixir systant daemon" @@ -66,8 +65,7 @@ echo " dev-config/ - Home Assistant development configuration" echo "" echo "Commands:" - echo " hass --config ./dev-config - Start HA dev instance" - echo " mosquitto - Start MQTT broker for testing" + echo " hass --config ./dev-config - Start HA dev instance (uses mqtt.home)" ''; }; packages = {