mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
16 lines
290 B
Nix
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;
|
|
};
|
|
}
|