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

18 lines
647 B
Nix
Raw Normal View History

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 {
extended-ollama-conversation = buildHassComponent ./extended-ollama-conversation {};
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 {};
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
})