chore(deps): update renovate/renovate docker tag to v37.68.4 #218

Open
renovate wants to merge 1976 commits from renovate/renovate-renovate-37.x into main
2 changed files with 23 additions and 1 deletions
Showing only changes of commit 913213e228 - Show all commits

View file

@ -26,7 +26,7 @@
};
deploy.nodes.bastion = {
hostname = "localhost";
hostname = "10.42.42.4";
fastConnection = true;
profiles.system = {
user = "root";

View file

@ -30,6 +30,9 @@
victor = {
acl = ["topic readwrite #"];
};
zigbee2mqtt = {
acl = ["topic readwrite #"];
};
};
enable = true;
port = 1883;
@ -37,5 +40,24 @@
allowAnonymous = true;
};
services.zigbee2mqtt = {
enable = true;
dataDir = "/var/lib/zigbee2mqtt";
settings = {
homeassistant = false;
permit_join = true;
serial = {
port = "/dev/ttyUSB0";
};
mqtt = {
base_topic = "zigbee2mqtt";
server = "mqtt://localhost:${toString config.services.mosquitto.port}";
user = "zigbee2mqtt";
};
};
};
networking.firewall.allowedTCPPorts = [ config.services.mosquitto.port ];
}