mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
9a941c58e5
Allows the installation of custom lovelace modules, that can inject css/js into the frontend and offer a wide variety of widgets.
317 B
317 B
Packaging guidelines
Entrypoint
Every lovelace module has an entrypoint in the form of a .js
file. By
default the nixos module will try to load ${pname}.js
when a module is
configured.
The entrypoint used can be overridden in passthru
like this:
passthru.entrypoint = "demo-card-bundle.js";