stockholm/makefu/2configs/deployment/homeautomation/mqtt.nix

17 lines
507 B
Nix
Raw Normal View History

2018-09-17 19:52:41 +00:00
{ pkgs, config, ... }:
{
services.mosquitto = {
enable = true;
host = "0.0.0.0";
allowAnonymous = false;
checkPasswords = true;
# see <host>/mosquitto
users.sensor = {
hashedPassword = "$6$2DXU7W1bvqXPqxkF$vtdz5KTd/T09hmoc9LjgEGFjvpwQbQth6vlVcr5hJNLgcBHv4U03YCKC8TKXbmQAa8xiJ76xJIg25kcL+KI3tg==";
acl = [ "topic readwrite #" ];
};
};
environment.systemPackages = [ pkgs.mosquitto ];
networking.firewall.allowedTCPPorts = [ config.services.mosquitto.port ];
}