mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 02:38:38 +02:00
Move the following output options into `build`: - finalPackage -> package - printInitPackage - initPath -> initFile - filesPlugin -> extraFiles - test.derivation -> test
18 lines
472 B
Nix
18 lines
472 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
|
|
./readonly-renames.nix
|
|
./test.nix
|
|
];
|
|
|
|
config = {
|
|
isTopLevel = true;
|
|
};
|
|
}
|