-
Notifications
You must be signed in to change notification settings - Fork 4
Build failure #53
Comments
Sorry, I have not been using this flake for a while myself, so it appears to have rotted a bit. I think one of the issues is that the JBR patches should be updated for the new Java 21 -based release. That said, I don’t currently have plans to work on this. |
I see. Would you know of any way to bundle Java installs with IntelliJ on NixOS so that the the JDK manager doesn’t break on every rebuild? That is what I was trying to achieve with this flake |
No, and there’s no explicit support for such thing in this flake either. How were you thinking of accomplishing that? It sounds like something that could be submitted to nixpkgs just as well. |
I was thinking of using Nix to get the path of all the Java installs packaged with IntelliJ and then put their paths in an environment variable that you can read in IntelliJ. Regarding packaging, I’ve never done anything regarding that so I’m not sure how achievable it is. Maybe this would be better suited for home manager? I’d assume there’s a config file for Java installs in IntelliJ that it could write to |
There is a config file, Alternative solution might be to add some known fixed locations for the JDKs, that you can use when adding the JDKs to IDEA: NixOS{
environment.etc = {
"jdks/openjdk21".source = pkgs.openjdk21.home;
"jdks/openjdk23".source = pkgs.openjdk23.home;
};
} You can then add JDKs home-manager{
xdg.dataFile = {
"jdks/openjdk21".source = pkgs.openjdk21.home;
"jdks/openjdk23".source = pkgs.openjdk23.home;
};
} |
Hi! I'm trying to use this to get IntelliJ's Java management to be functional on NixOS, but the Flake fails to build. Not sure if this is a bug or user error but let's see!
I followed the steps in #32 by adding this to my system Flake, then adding
pkgs.intellij-idea-community
to my system packages. Upon rebuilding, it errors with:With the log command it asks for outputting:
The text was updated successfully, but these errors were encountered: