2024-10-16 20:12:23 -04:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
} @ inputs:
|
|
|
|
lib.makeScope pkgs.newScope (hass: let
|
2024-09-19 22:16:11 -04:00
|
|
|
buildHassComponent = file: extraArgs:
|
|
|
|
hass.callPackage file (inputs // extraArgs // {});
|
2024-09-02 22:14:49 -04:00
|
|
|
in {
|
2024-09-22 20:22:37 -04:00
|
|
|
extended-ollama-conversation = buildHassComponent ./extended-ollama-conversation {};
|
2024-10-07 15:15:29 -04:00
|
|
|
ha-fallback-conversation = buildHassComponent ./ha-fallback-conversation {};
|
2024-10-22 20:28:11 -04:00
|
|
|
material-symbols = buildHassComponent ./material-symbols {};
|
2024-10-05 12:38:13 -04:00
|
|
|
netdaemon = buildHassComponent ./netdaemon {};
|
2024-09-30 13:39:09 -04:00
|
|
|
spotifyplus = import ./spotifyplus ({inherit buildHassComponent;} // inputs);
|
2024-09-30 12:06:05 -04:00
|
|
|
tuya-local = buildHassComponent ./tuya-local {};
|
2024-10-23 00:30:24 -04:00
|
|
|
yamaha-soundbar = buildHassComponent ./yamaha-soundbar {};
|
2024-09-02 22:14:49 -04:00
|
|
|
})
|