mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
18 lines
321 B
Nix
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;
|
|
};
|
|
}
|