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

16 lines
251 B
Nix
Raw Normal View History

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