mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
12 lines
239 B
Nix
12 lines
239 B
Nix
# Args probably only needs pkgs and lib
|
|
{
|
|
makeNixvim,
|
|
pkgs,
|
|
...
|
|
} @ args: {
|
|
# Add all exported modules here
|
|
check = import ../tests/test-derivation.nix {
|
|
inherit makeNixvim pkgs;
|
|
};
|
|
helpers = import ./helpers.nix args;
|
|
}
|