nix-community.nixvim/flake-modules/packages.nix
traxys 507ff5b142
docs: Use a nixpkgs patch instead of copy/pasting nixpkgs functions (#1011)
This makes the code more maintainable, as it only depends on our small
patch, instead of a large number of internals of nixpkgs.
2024-02-03 19:04:09 +01:00

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