mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
25 lines
404 B
Nix
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;
|
|
};
|
|
}
|