1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/flake/packages.nix
2025-01-19 12:56:24 +01:00

25 lines
404 B
Nix

{
inputs,
helpers,
...
}:
{
perSystem =
{
config,
inputs',
system,
...
}:
{
packages = import ../docs {
inherit helpers;
inherit system;
inherit (inputs) nixpkgs;
inherit (inputs') nuschtosSearch;
};
# Test that all packages build fine when running `nix flake check`.
checks = config.packages;
};
}