MyNixOS website logo
option

services.mosquitto.listeners.*.users

A set of users and their passwords and ACLs.

Declarations
Type
attribute set of (submodule)
Default
{ }
Example
{
  john = {
    acl = [
      "readwrite john/#"
    ];
    password = "123456";
  };
}