nix-community.nixvim/flake/packages.nix

26 lines
404 B
Nix
Raw Normal View History

{
inputs,
helpers,
...
}:
{
2024-05-05 19:39:35 +02:00
perSystem =
{
config,
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
# Test that all packages build fine when running `nix flake check`.
checks = config.packages;
};
}