mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-23 20:25:08 +02:00
modules/top-level: move out of wrappers/modules
This commit is contained in:
parent
b59fa976d0
commit
2deb61f6a5
10 changed files with 34 additions and 16 deletions
12
modules/top-level/default.nix
Normal file
12
modules/top-level/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
# 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue