nix-community.nixvim/flake-modules/packages.nix
2024-01-18 13:45:23 +01:00

18 lines
321 B
Nix

{
perSystem = {
pkgs,
config,
modulesUnfree,
pkgsUnfree,
...
}: {
packages = import ../docs {
modules = modulesUnfree;
pkgs = pkgsUnfree;
inherit (pkgs) lib;
};
# Test that all packages build fine when running `nix flake check`.
checks = config.packages;
};
}