mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 19:18:57 +02:00
16 lines
272 B
Nix
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;
|
|
};
|
|
}
|