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