nix-community.nixvim/flake/packages.nix

28 lines
439 B
Nix
Raw Permalink Normal View History

{
self,
inputs,
helpers,
...
}:
{
2024-05-05 19:39:35 +02:00
perSystem =
{
config,
inputs',
system,
...
}:
2024-05-05 19:39:35 +02:00
{
# Run the docs server when using `nix run .#docs`
apps.docs.program = config.packages.serve-docs;
packages = import ../docs {
nixvim = self;
inherit helpers;
inherit system;
inherit (inputs) nixpkgs;
inherit (inputs') nuschtosSearch;
};
2024-05-05 19:39:35 +02:00
};
}