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/java

View file

@ -10,8 +10,8 @@
javaSdk = pkgs.temurin-bin-17;
javaPkgs = attrValues {inherit (pkgs) gradle maven;};
in
mkIf cfg.enableIde {
in {
config = mkIf cfg.enable {
home.packages = javaPkgs;
xdg.dataFile.".gradle/gradle.properties".text = ''
@ -81,4 +81,8 @@ in
];
};
};
}
};
# For accurate stack trace
_file = ./default.nix;
}