mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-14 11:14:36 +02:00
This makes the code more maintainable, as it only depends on our small patch, instead of a large number of internals of nixpkgs.
15 lines
251 B
Nix
15 lines
251 B
Nix
{
|
|
perSystem = {
|
|
pkgs,
|
|
config,
|
|
rawModules,
|
|
...
|
|
}: {
|
|
packages = import ../docs {
|
|
inherit rawModules pkgs;
|
|
};
|
|
|
|
# Test that all packages build fine when running `nix flake check`.
|
|
checks = config.packages;
|
|
};
|
|
}
|