mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-09 21:53:24 +00:00
14 lines
317 B
Markdown
14 lines
317 B
Markdown
![]() |
# 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:
|
||
|
|
||
|
```nix
|
||
|
passthru.entrypoint = "demo-card-bundle.js";
|
||
|
```
|