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

21 lines
364 B
Nix
Raw Normal View History

{ inputs, ... }:
{
2024-05-05 19:39:35 +02:00
perSystem =
{
config,
inputs',
system,
...
}:
2024-05-05 19:39:35 +02:00
{
packages = import ../docs {
inherit system;
inherit (inputs) nixpkgs;
inherit (inputs') nuschtosSearch;
};
2024-05-05 19:39:35 +02:00
# Test that all packages build fine when running `nix flake check`.
checks = config.packages;
};
}