nix-community.nixvim/flake-modules/packages.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
426 B
Nix
Raw Normal View History

{
perSystem =
{
pkgsUnfree,
config,
rawModules,
helpers,
...
}:
{
packages = import ../docs {
inherit rawModules helpers;
# Building the docs evaluates each plugin's default package, some of which are unfree
pkgs = pkgsUnfree;
};
# Test that all packages build fine when running `nix flake check`.
checks = config.packages;
};
}