enable mosquitto

This commit is contained in:
Vivian 2021-10-18 18:58:24 +02:00
parent 3c3f2c7925
commit 35a60ad122
No known key found for this signature in database
GPG key ID: A3923C699D1A3BDA

View file

@ -24,4 +24,11 @@
# Additional packages
environment.systemPackages = with pkgs; [];
services.mosquitto = {
enable = true;
port = 1883;
};
networking.firewall.allowedTCPPorts = [ config.services.mosquitto.port ];
}