mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-01 12:54:30 +02:00
13 lines
335 B
Nix
13 lines
335 B
Nix
{
|
|
perSystem =
|
|
{ pkgsUnfree, config, ... }:
|
|
{
|
|
packages = import ../docs {
|
|
# 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;
|
|
};
|
|
}
|