nix-community.nixvim/flake-modules/packages.nix
Gaetan Lepage 5d3ed3a09e misc: refactor helpers propagation
Co-authored-by: Robert Hensing <robert@roberthensing.nl>
2024-02-09 14:20:25 +01:00

16 lines
272 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;
};
}