nix-community.nixvim/flake-modules/lib.nix
Matt Sturgeon f47374fd26
modules/test: init, replacing dontRun arg
Introduces the `test.runNvim` module option.

Deprecates the historic `dontRun` argument passed to the test-derivation
helpers.

Soft-deprecates the `tests.dontRun` attr used in tests currently.
2024-08-20 00:34:12 +01:00

17 lines
274 B
Nix

{
config,
lib,
withSystem,
...
}:
{
flake.lib = lib.genAttrs config.systems (
lib.flip withSystem (
{ pkgs, config, ... }:
import ../lib {
inherit pkgs lib;
inherit (config.legacyPackages) makeNixvimWithModule;
}
)
);
}