mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-25 19:51:06 +01:00
Not to be confused with the Nixvim-configuration `helpers` module arg, remove the flake-parts `helpers` module arg.
21 lines
397 B
Nix
21 lines
397 B
Nix
{ self, inputs, ... }:
|
|
{
|
|
perSystem =
|
|
{
|
|
config,
|
|
inputs',
|
|
system,
|
|
...
|
|
}:
|
|
{
|
|
# Run the docs server when using `nix run .#docs`
|
|
apps.docs.program = config.packages.serve-docs;
|
|
|
|
packages = import ../docs {
|
|
nixvim = self;
|
|
inherit system;
|
|
inherit (inputs) nixpkgs;
|
|
inherit (inputs') nuschtosSearch;
|
|
};
|
|
};
|
|
}
|