mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
19 lines
414 B
Nix
19 lines
414 B
Nix
{
|
|
perSystem =
|
|
{
|
|
pkgsUnfree,
|
|
config,
|
|
inputs',
|
|
...
|
|
}:
|
|
{
|
|
packages = import ../docs {
|
|
# Building the docs evaluates each plugin's default package, some of which are unfree
|
|
pkgs = pkgsUnfree;
|
|
inherit (inputs') nuschtosSearch;
|
|
};
|
|
|
|
# Test that all packages build fine when running `nix flake check`.
|
|
checks = config.packages;
|
|
};
|
|
}
|