blob: cba43e22d03bfa40d7e7ec23b52c74700ed93c35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ ... }:
{
services.mosquitto = {
enable = true;
persistence = false;
settings.max_keepalive = 60;
listeners = [
{
port = 1883;
omitPasswordAuth = true;
users = {};
settings = {
allow_anonymous = true;
};
acl = [ "topic readwrite #" "pattern readwrite #" ];
}
];
};
}
|