nixos-configs/legacyPackages/hass-components/default.nix
matt1432 c68779da23
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(hass): clean up and remove sonos for spotifyplus
2024-09-30 13:39:09 -04:00

9 lines
387 B
Nix

{pkgs, ...} @ inputs:
pkgs.lib.makeScope pkgs.newScope (hass: let
buildHassComponent = file: extraArgs:
hass.callPackage file (inputs // extraArgs // {});
in {
extended-ollama-conversation = buildHassComponent ./extended-ollama-conversation {};
spotifyplus = import ./spotifyplus ({inherit buildHassComponent;} // inputs);
tuya-local = buildHassComponent ./tuya-local {};
})