15 lines
523 B
Nix
15 lines
523 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
} @ inputs:
|
|
lib.makeScope pkgs.newScope (hass: let
|
|
buildHassComponent = file: extraArgs:
|
|
hass.callPackage file (inputs // extraArgs // {});
|
|
in {
|
|
extended-ollama-conversation = buildHassComponent ./extended-ollama-conversation {};
|
|
ha-fallback-conversation = buildHassComponent ./ha-fallback-conversation {};
|
|
netdaemon = buildHassComponent ./netdaemon {};
|
|
spotifyplus = import ./spotifyplus ({inherit buildHassComponent;} // inputs);
|
|
tuya-local = buildHassComponent ./tuya-local {};
|
|
})
|