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

14 lines
335 B
Nix
Raw Normal View History

{
2024-05-05 19:39:35 +02:00
perSystem =
2024-07-06 00:22:17 +01:00
{ pkgsUnfree, config, ... }:
2024-05-05 19:39:35 +02:00
{
packages = import ../docs {
# Building the docs evaluates each plugin's default package, some of which are unfree
pkgs = pkgsUnfree;
};
2024-05-05 19:39:35 +02:00
# Test that all packages build fine when running `nix flake check`.
checks = config.packages;
};
}