feat: add genie w/ hass integration

This commit is contained in:
Felix Schröter 2022-08-12 12:06:52 +02:00
parent 170612a57e
commit c91eb45acf
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 24 additions and 0 deletions

View file

@ -5,6 +5,7 @@ with pkgs;
let
port = config.services.home-assistant.config.http.server_port;
mqttPort = 1883;
geniePort = 3232;
in {
# just installed for ConBee firmware updates
environment.systemPackages = with pkgs; [ deconz ];
@ -116,6 +117,10 @@ in {
delay_time = 0;
};
}];
almond = {
type = "local";
host = "http://localhost:${toString geniePort}";
};
};
# configWritable = true; # doesn't work atm
};