1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/flake-modules/packages.nix
2024-09-13 12:26:48 +01:00

20 lines
364 B
Nix

{ 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;
};
}