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

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

View file

@ -10,7 +10,7 @@ self: {
cfg = config.programs.neovim;
in {
config = mkIf cfg.enableIde {
config = mkIf cfg.enable {
programs = {
neovim = {
extraPackages = attrValues {
@ -73,5 +73,5 @@ in {
};
# For accurate stack trace
_file = ./csharp.nix;
_file = ./default.nix;
}