mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-30 12:24:28 +02:00
This requires pulling quite a lot of code from nixpkgs in order to make the `either` type work correctly, the effects can be seen for example in the documentation of `ollama.promps` and `ollama.actions`
16 lines
271 B
Nix
16 lines
271 B
Nix
{
|
|
perSystem = {
|
|
pkgs,
|
|
config,
|
|
modules,
|
|
...
|
|
}: {
|
|
packages = import ../docs {
|
|
inherit modules pkgs;
|
|
inherit (pkgs) lib;
|
|
};
|
|
|
|
# Test that all packages build fine when running `nix flake check`.
|
|
checks = config.packages;
|
|
};
|
|
}
|