me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

add mqtt

author
Sean Aye
date (Sep 25, 2025, 8:37 PM -0400) commit 95514265 parent 6a267d4e change-id oyvypxoo
+20 -1
+20 -1
hosts/mira/configuration.nix
··· 131 131 }; 132 132 }; 133 133 134 + # MQTT broker for Home Assistant (Tasmota devices) 135 + services.mosquitto = { 136 + enable = true; 137 + listeners = [ 138 + { 139 + acl = [ "pattern readwrite #" ]; 140 + omitPasswordAuth = true; 141 + settings.allow_anonymous = true; 142 + } 143 + ]; 144 + }; 145 + 134 146 # Home Assistant service 135 147 services.home-assistant = { 136 148 enable = true; ··· 141 153 "homekit" 142 154 "homekit_controller" 143 155 "isal" 156 + "mqtt" 144 157 "tasmota" 158 + "wiz" 145 159 ]; 146 160 config = { 147 - logger.default = "debug"; 161 + homeassistant = { 162 + time_zone = "America/Toronto"; 163 + }; 148 164 default_config = { }; 149 165 zeroconf = { }; 166 + # MQTT configuration - broker must be set up via UI 167 + mqtt = { }; 150 168 }; 151 169 }; 152 170 ··· 158 176 8096 # jellyfin 159 177 5055 # jellyseer 160 178 3000 # vite dev port 179 + 1883 # MQTT for Tasmota devices 161 180 config.services.home-assistant.config.http.server_port 162 181 ]; 163 182 networking.firewall.allowedUDPPorts = [