gradle: Don't enable programs.java

The gradle package from nixpkgs will install a default Java version and
pass it to the gradle executable without polluting the global env.
Users can customize this by overriding the gradle package like so:

  programs.gradle = {
    package = (pkgs.gradle.override {
      java = pkgs.jdk21;
    });
  }
This commit is contained in:
Benedikt Ritter 2024-01-18 00:12:08 +01:00 committed by GitHub
parent 9fed3282e9
commit 62856932af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -108,7 +108,5 @@ in {
home.sessionVariables = mkIf (cfg.home != defaultHomeDirectory) {
GRADLE_USER_HOME = gradleHome;
};
programs.java.enable = true;
};
}