nixos-configs/scopedPackages/lovelace-components/default.nix
matt1432 554e70d040
All checks were successful
Discord / discord commits (push) Has been skipped
fix(hass): use js module for material you theme
2024-12-27 06:26:39 -05:00

11 lines
264 B
Nix

{
lib,
pkgs,
...
} @ inputs:
lib.makeScope pkgs.newScope (lovelace: let
callPackage = file: lovelace.callPackage file ({} // inputs);
in {
custom-sidebar = callPackage ./custom-sidebar;
material-rounded-theme = callPackage ./material-rounded-theme;
})