nix-community.nixvim/flake/packages.nix

22 lines
283 B
Nix
Raw Permalink Normal View History

{
inputs,
helpers,
...
}:
{
2024-05-05 19:39:35 +02:00
perSystem =
{
inputs',
system,
...
}:
2024-05-05 19:39:35 +02:00
{
packages = import ../docs {
inherit helpers;
inherit system;
inherit (inputs) nixpkgs;
inherit (inputs') nuschtosSearch;
};
2024-05-05 19:39:35 +02:00
};
}