infrastructure/nixos/hosts/olympus/mosquitto/configuration.nix

58 lines
1.6 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, ... }:
2021-10-25 12:50:04 +02:00
let mosquittoPort = 1883;
2022-05-06 17:41:05 +02:00
in
{
2021-11-21 21:56:17 +01:00
imports = [ ];
2021-10-18 18:54:07 +02:00
# 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
2021-10-25 12:50:04 +02:00
environment.systemPackages = with pkgs; [ ];
2021-10-18 18:58:24 +02:00
services.mosquitto = {
enable = true;
2021-10-25 12:50:04 +02:00
listeners = [{
2022-05-06 17:41:05 +02:00
port = mosquittoPort;
2021-10-25 12:50:04 +02:00
settings.allow_anonymous = true;
acl = [ "topic readwrite #" ];
users = {
victor = { acl = [ "readwrite #" ]; };
zigbee2mqtt = { acl = [ "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-11-20 23:41:11 +01:00
permit_join = false;
2021-10-18 20:45:12 +02:00
2021-10-25 12:50:04 +02:00
serial = { port = "/dev/ttyUSB0"; };
2021-10-18 20:45:12 +02:00
mqtt = {
base_topic = "zigbee2mqtt";
2021-10-25 12:50:04 +02:00
server = "mqtt://localhost:${toString mosquittoPort}";
2021-10-18 20:45:12 +02:00
user = "zigbee2mqtt";
};
2021-10-25 12:50:04 +02:00
frontend = { port = 8080; };
2021-10-18 20:45:12 +02:00
};
};
2021-11-21 21:56:17 +01:00
networking.firewall.allowedTCPPorts =
[ mosquittoPort config.services.zigbee2mqtt.settings.frontend.port ];
2021-10-18 18:54:07 +02:00
}