nixos-configs/legacyPackages/hass-addons/default.nix
matt1432 761e0487ee
All checks were successful
Discord / discord commits (push) Has been skipped
feat(hass): use LLM as voice assistant
2024-09-02 22:14:49 -04:00

7 lines
185 B
Nix

{pkgs, ...} @ inputs:
pkgs.lib.makeScope pkgs.newScope (hass: let
buildHassAddon = file:
hass.callPackage file (inputs // {});
in {
home-llm = buildHassAddon ./home-llm.nix;
})