summaryrefslogtreecommitdiffstats
path: root/2configs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2021-12-10 08:48:58 +0100
committermakefu <github@syntax-fehler.de>2021-12-10 08:48:58 +0100
commite52fa57863416a330664f4ccc15057fec2d7d463 (patch)
tree101d09b7db58e47a9aaa4f474c723c93c476dc99 /2configs
parent674c80010daf380a0355d863d281dfe80fcb0317 (diff)
ma home/mqtt: fix acl
Diffstat (limited to '2configs')
-rw-r--r--2configs/home/ham/mqtt.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/2configs/home/ham/mqtt.nix b/2configs/home/ham/mqtt.nix
index c90afff4a..5e668e7a0 100644
--- a/2configs/home/ham/mqtt.nix
+++ b/2configs/home/ham/mqtt.nix
@@ -12,15 +12,15 @@
omitPasswordAuth = false;
users.sensor = {
hashedPassword = "$6$2DXU7W1bvqXPqxkF$vtdz5KTd/T09hmoc9LjgEGFjvpwQbQth6vlVcr5hJNLgcBHv4U03YCKC8TKXbmQAa8xiJ76xJIg25kcL+KI3tg==";
- acl = [ "topic readwrite #" ];
+ acl = [ "readwrite #" ];
};
users.hass = {
hashedPassword = "$6$SHuYGrE5kPSUc/hu$EomZ0KBy+vkxLt/6eJkrSBjYblCCeMjhDfUd2mwqXYJ4XsP8hGmZ59mMlmBCd3AvlFYQxb4DT/j3TYlrqo7cDA==";
- acl = [ "topic readwrite #" ];
+ acl = [ "readwrite #" ];
};
users.stats = {
hashedPassword = "$6$j4H7KXD/YZgvgNmL$8e9sUKRXowDqJLOVgzCdDrvDE3+4dGgU6AngfAeN/rleGOgaMhee2Mbg2KS5TC1TOW3tYbk9NhjLYtjBgfRkoA==";
- acl = [ "topic read #" ];
+ acl = [ "read #" ];
};
settings = {
allow_anonymous = false;