nixpkgs/pkgs/servers/home-assistant/custom-lovelace-modules/README.md
Janne Heß fcc95ff817 treewide: Fix all Nix ASTs in all markdown files
This allows for correct highlighting and maybe future automatic
formatting. The AST was verified to work with nixfmt only.
2024-03-28 09:28:12 +01:00

323 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";
}