This website requires JavaScript.
Explore
Help
Sign in
mirror
/
nix-community.nixvim
Watch
1
Star
0
Fork
You've already forked nix-community.nixvim
0
mirror of
https://github.com/nix-community/nixvim.git
synced
2025-06-21 16:39:00 +02:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
Actions
2
cc8918663a
nix-community.nixvim
/
modules
/
misc
/
default.nix
9 lines
99 B
Nix
Raw
Normal View
History
Unescape
Escape
modules: refactor module bootstrapping Let's simplify things by defining all modules in `./plugins`, `./modules` and `./wrappers/modules`. Instead of currying `pkgs` into a bootstrapping module, we can require `defaultPkgs` be provided as a special arg. This refactor allows us to completely remove `flake-modules/modules.nix`!
2024-07-02 13:30:29 +01:00
{
imports
=
[
modules/misc: include `assertions` and `meta` modules in the repo Based on the modules we previously imported from NixOS. This will allow us to drop the `defaultPkgs` specialArg and avoids needing the proposed `pkgsPath` specialArg.
2024-09-24 02:58:37 +01:00
./assertions.nix
modules/context: init with `isDocs` Replaced the `isDocs` specialArg added in #1807 with an internal module option. We should only use `specialArgs` when absolutely necessary, a module or `_module.args` is preferred, but those aren't available until `config` is evaluated so they can't be used for `imports`. The main problem with `specialArgs` is it makes our modules less portable. Luckily that shouldn't be an issue for these context flags.
2024-07-05 23:26:05 +01:00
./context.nix
modules/misc: include `assertions` and `meta` modules in the repo Based on the modules we previously imported from NixOS. This will allow us to drop the `defaultPkgs` specialArg and avoids needing the proposed `pkgsPath` specialArg.
2024-09-24 02:58:37 +01:00
./meta.nix
modules: refactor module bootstrapping Let's simplify things by defining all modules in `./plugins`, `./modules` and `./wrappers/modules`. Instead of currying `pkgs` into a bootstrapping module, we can require `defaultPkgs` be provided as a special arg. This refactor allows us to completely remove `flake-modules/modules.nix`!
2024-07-02 13:30:29 +01:00
./nixvim-info.nix
]
;
}
Reference in a new issue
Copy permalink