nix-community.nixvim/flake/packages.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
283 B
Nix
Raw Normal View History

{
inputs,
helpers,
...
}:
{
perSystem =
{
inputs',
system,
...
}:
{
packages = import ../docs {
inherit helpers;
inherit system;
inherit (inputs) nixpkgs;
inherit (inputs') nuschtosSearch;
};
};
}