nix-community.nixvim/flake-modules/packages.nix
2024-05-05 22:00:40 +02:00

16 lines
290 B
Nix

{
perSystem =
{
pkgs,
config,
rawModules,
helpers,
...
}:
{
packages = import ../docs { inherit rawModules pkgs helpers; };
# Test that all packages build fine when running `nix flake check`.
checks = config.packages;
};
}