refactor(nvim): add _file and config attrs to all submodules

This commit is contained in:
matt1432 2024-12-21 23:34:10 -05:00
parent e1d77a4f3b
commit 0f627107ce
23 changed files with 243 additions and 209 deletions
homeManagerModules/neovim/langs/rust

View file

@ -7,8 +7,8 @@
inherit (lib) attrValues mkIf;
cfg = config.programs.neovim;
in
mkIf cfg.enableIde {
in {
config = mkIf cfg.enable {
programs = {
neovim = {
extraPackages = attrValues {
@ -35,4 +35,8 @@ in
'';
};
};
}
};
# For accurate stack trace
_file = ./default.nix;
}