diff options
author | makefu <github@syntax-fehler.de> | 2021-12-04 18:33:43 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-12-04 18:33:43 +0100 |
commit | c22610c8e695cf9f8b48a1fa9040f57187064e77 (patch) | |
tree | de64a5cea287197a71dea4681d46c08919132dd7 /lass/2configs/hass | |
parent | 33d13bff84c85ad9f22300598a0c4115e3361f7f (diff) | |
parent | 70be7f119b25f1913be9a219f5dad0b179405b4e (diff) |
Merge remote-tracking branch 'lass/21.11' into 21.11
Diffstat (limited to 'lass/2configs/hass')
-rw-r--r-- | lass/2configs/hass/default.nix | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/lass/2configs/hass/default.nix b/lass/2configs/hass/default.nix index be9c32809..b303df938 100644 --- a/lass/2configs/hass/default.nix +++ b/lass/2configs/hass/default.nix @@ -119,13 +119,10 @@ in { services.mosquitto = { enable = true; - host = "0.0.0.0"; - allowAnonymous = false; - checkPasswords = true; - users.gg23 = { - password = "gg23-mqtt"; - acl = [ "topic readwrite #" ]; - }; + listeners = [{ + acl = [ "topic pattern readwrite #" ]; + users.gg23 = { acl = [ "topic readwrite #" ]; password = "gg23-mqtt"; }; + }]; }; environment.systemPackages = [ pkgs.mosquitto ]; |