mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
13 lines
392 B
Nix
13 lines
392 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.nix
|
||
|
./output.nix
|
||
|
];
|
||
|
}
|