stockholm/makefu/2configs/mqtt.nix

20 lines
362 B
Nix
Raw Normal View History

2017-05-02 12:04:39 +00:00
{ ... }:
{
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 #" ];
}
];
2017-05-02 12:04:39 +00:00
};
}