CrOS/modules/services/mqtt/default.nix
TheWanderingCrow ccbd233a74 testingg mqtt
2025-09-04 15:03:47 -04:00

12 lines
207 B
Nix

{
services.mosquitto = {
enable = true;
listeners = [
{
acl = ["pattern readwrite #"];
omitPasswordAuth = true;
settings.allow_anonymous = true;
}
];
};
}