mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-10 17:34:05 -05:00
testingg mqtt
This commit is contained in:
parent
bbb61afd58
commit
ccbd233a74
2 changed files with 13 additions and 0 deletions
|
|
@ -46,6 +46,7 @@
|
|||
"modules/services/grocy"
|
||||
"modules/services/homebox"
|
||||
"modules/services/homepage"
|
||||
"modules/services/mqtt"
|
||||
"modules/services/openhab"
|
||||
"modules/services/lubelogger"
|
||||
"modules/services/trilium"
|
||||
|
|
|
|||
12
modules/services/mqtt/default.nix
Normal file
12
modules/services/mqtt/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
services.mosquitto = {
|
||||
enable = true;
|
||||
listeners = [
|
||||
{
|
||||
acl = ["pattern readwrite #"];
|
||||
omitPasswordAuth = true;
|
||||
settings.allow_anonymous = true;
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue