mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
fcc95ff817
This allows for correct highlighting and maybe future automatic formatting. The AST was verified to work with nixfmt only.
323 B
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";
}