nixos-servers/services/home-assistant/default.nix

52 lines
1.0 KiB
Nix

{ pkgs, ... }:
{
# Enable the Home Assistant service
services.home-assistant = {
enable = true;
configWritable = true;
config = null;
extraPackages = python3Packages: with pkgs.python3Packages; [
zigpy-cc
zigpy-znp
zigpy-zigate
zigpy-xbee
zigpy-deconz
pykodi
gtts
bellows
radios
paho-mqtt
zha-quirks
pyunifiprotect
unifi-discovery
universal-silabs-flasher
python-roborock
];
customComponents = with pkgs.home-assistant-custom-components; [
];
};
# Enable the mosquitto MQTT broker
services.mosquitto = {
enable = true;
persistence = true;
listeners = [
{
acl = [ "pattern readwrite #" ];
omitPasswordAuth = true;
settings.allow_anonymous = true;
}
];
};
# Enable the zigbee2mqtt service
services.zigbee2mqtt = {
enable = true;
package = pkgs.unstable.zigbee2mqtt;
settings = {
permit_join = false;
serial.port = "/dev/ttyUSB0";
};
};
}