m 1 omo: add mqtt

This commit is contained in:
makefu 2017-05-02 14:04:39 +02:00
parent 6baf8704a4
commit 0fdb899e5d
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 12 additions and 0 deletions

View File

@ -55,7 +55,10 @@ in {
../2configs/logging/central-stats-server.nix
# ../2configs/logging/central-logging-server.nix
../2configs/logging/central-stats-client.nix
# services
../2configs/syncthing.nix
../2configs/mqtt.nix
# ../2configs/logging/central-logging-client.nix
# ../2configs/torrent.nix

9
makefu/2configs/mqtt.nix Normal file
View File

@ -0,0 +1,9 @@
{ ... }:
{
services.mosquitto = {
enable = true;
host = "0.0.0.0";
users = {};
allowAnonymous = true;
};
}