nix-community.nixvim/modules/top-level/default.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

13 lines
403 B
Nix

# Alternative to `/modules` that also includes modules that should only exist at the "top-level".
# Therefore, `/modules` should be used instead for submodules nested within a nixvim config.
#
# When using this, you likely also want a "wrapper" module for any platform-specific options.
# See `/wrappers/modules` for examples.
{
imports = [
../.
./files
./output.nix
./test.nix
];
}