nixos-configs/legacyPackages/hass-components/default.nix
matt1432 20d2fc6b76
All checks were successful
Discord / discord commits (push) Has been skipped
chore(hass): use proper terms for components
2024-09-04 11:53:51 -04:00

7 lines
193 B
Nix

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