1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-28 05:01:03 +01:00
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;
};
}