nix-community.nixvim/flake-modules/packages.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
364 B
Nix
Raw Normal View History

{ inputs, ... }:
{
perSystem =
{
config,
inputs',
system,
...
}:
{
packages = import ../docs {
inherit system;
inherit (inputs) nixpkgs;
inherit (inputs') nuschtosSearch;
};
# Test that all packages build fine when running `nix flake check`.
checks = config.packages;
};
}