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

17 lines
290 B
Nix
Raw Normal View History

{
2024-05-05 19:39:35 +02:00
perSystem =
{
pkgs,
config,
rawModules,
helpers,
...
}:
{
packages = import ../docs { inherit rawModules pkgs helpers; };
2024-05-05 19:39:35 +02:00
# Test that all packages build fine when running `nix flake check`.
checks = config.packages;
};
}