Intellij: configure jdk8 as default java version

This commit is contained in:
Toast 2023-10-06 13:25:41 +02:00
parent 46e73a0765
commit 69ae27e713

View file

@ -1,6 +1,11 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
programs.java = {
enable = true;
package = pkgs.jdk8;
};
environment.systemPackages = with pkgs; with jetbrains; [ environment.systemPackages = with pkgs; with jetbrains; [
idea-ultimate idea-ultimate
]; ];