diff options
author | Martin Fischer <martin@push-f.com> | 2024-12-21 15:12:54 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2024-12-21 15:12:54 +0100 |
commit | a8ff778f6873fe481f9e7a169038371ad716b723 (patch) | |
tree | 5d8e9bfb683d8e7a994c8e3f40ff1732a765c870 | |
parent | 4ff57e735f1900cdd297c2907b091491e0808d2b (diff) |
ev: add zigbee2mqtt and mosquitto
-rw-r--r-- | nixos/ev-configuration.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nixos/ev-configuration.nix b/nixos/ev-configuration.nix index 084bc26..c89183a 100644 --- a/nixos/ev-configuration.nix +++ b/nixos/ev-configuration.nix @@ -38,6 +38,16 @@ ]; networking.firewall.allowedUDPPorts = []; + services = { + zigbee2mqtt = { + enable = true; + }; + + mosquitto = { + enable = true; + }; + }; + # 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. It‘s perfectly fine and recommended to leave |