summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/mqtt.nix
blob: 8b77df962ce9c40bf7813531113bf59d45eac835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ ... }:
{
  services.mosquitto = {
    enable = true;
    host = "0.0.0.0";
    users = {};
    # TODO: secure that shit
    aclExtraConf = ''
      pattern readwrite /#
    '';
    allowAnonymous = true;
  };
}