mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-09 16:54:36 +02:00
15 lines
384 B
Nix
15 lines
384 B
Nix
{ getHelpers, ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgsUnfree, config, ... }:
|
|
{
|
|
packages = import ../docs {
|
|
inherit getHelpers;
|
|
# 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;
|
|
};
|
|
}
|