mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
16 lines
416 B
Nix
16 lines
416 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
{
|
|
networking.firewall.allowedTCPPorts = [ 1883 ];
|
|
services.home-assistant.config.mqtt = { };
|
|
|
|
services.mosquitto = {
|
|
enable = true;
|
|
listeners = [{
|
|
users.tstarr = {
|
|
acl = [ "readwrite #" ];
|
|
hashedPassword = "$7$101$fWS64zbpdeUWd8fA$A31ESjDqooTB9BTYA9dvdU20Cwpxc3wmXfm7QLEJYZzd+UkbCVG1Ic7VsD9BBghka0WQZgkQczzag/t09BZ+5w==";
|
|
};
|
|
}];
|
|
};
|
|
}
|