nixos-configs/legacyPackages/hass-components/default.nix

10 lines
387 B
Nix
Raw Normal View History

2024-09-02 22:14:49 -04:00
{pkgs, ...} @ inputs:
pkgs.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 {
extended-ollama-conversation = buildHassComponent ./extended-ollama-conversation {};
spotifyplus = import ./spotifyplus ({inherit buildHassComponent;} // inputs);
2024-09-30 12:06:05 -04:00
tuya-local = buildHassComponent ./tuya-local {};
2024-09-02 22:14:49 -04:00
})