infrastructure/hosts/mosquitto/configuration.nix

67 lines
1.7 KiB
Nix
Raw Normal View History

2021-10-18 18:54:07 +02:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{
imports =
[
# Import common config
../../common/generic-lxc.nix
../../common
];
networking.hostName = "mosquitto";
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.05"; # Did you read the comment?
# Additional packages
environment.systemPackages = with pkgs; [];
2021-10-18 18:58:24 +02:00
services.mosquitto = {
2021-10-18 21:37:56 +02:00
users = {
victor = {
acl = ["topic readwrite #"];
};
zigbee2mqtt = {
acl = ["topic readwrite #"];
};
};
2021-10-18 18:58:24 +02:00
enable = true;
2021-10-18 21:09:55 +02:00
2021-10-18 18:58:24 +02:00
port = 1883;
2021-10-18 19:23:34 +02:00
host = "0.0.0.0";
2021-10-18 21:37:56 +02:00
2021-10-18 19:23:34 +02:00
allowAnonymous = true;
2021-10-18 21:09:55 +02:00
aclExtraConf = "topic readwrite #";
2021-10-18 18:58:24 +02:00
};
2021-10-18 20:45:12 +02:00
services.zigbee2mqtt = {
enable = true;
dataDir = "/var/lib/zigbee2mqtt";
settings = {
2021-10-18 21:37:56 +02:00
homeassistant = true;
2021-10-18 20:45:12 +02:00
permit_join = true;
serial = {
port = "/dev/ttyUSB0";
};
mqtt = {
base_topic = "zigbee2mqtt";
server = "mqtt://localhost:${toString config.services.mosquitto.port}";
user = "zigbee2mqtt";
};
};
};
2021-10-18 18:58:24 +02:00
networking.firewall.allowedTCPPorts = [ config.services.mosquitto.port ];
2021-10-18 18:54:07 +02:00
}