From 323dd2c148eb13fbbae5da48d8a0ed61f47c31ad Mon Sep 17 00:00:00 2001 From: Eclypsed Date: Fri, 25 Apr 2025 03:07:54 -0400 Subject: [PATCH] Switched jdk package to avoid headless issue with AWT --- modules/homeManager.nix | 2 +- modules/nixos.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/homeManager.nix b/modules/homeManager.nix index 954189b..7d91f2d 100644 --- a/modules/homeManager.nix +++ b/modules/homeManager.nix @@ -16,7 +16,7 @@ with lib; config = mkIf config.programs.nix-jmu-cs345.enable { home.packages = with pkgs; [ - jdk21_headless + jdk eclipse-cs345 ]; }; diff --git a/modules/nixos.nix b/modules/nixos.nix index e8ee640..437f34b 100644 --- a/modules/nixos.nix +++ b/modules/nixos.nix @@ -16,7 +16,7 @@ with lib; config = mkIf config.programs.nix-jmu-cs345.enable { environment.systemPackages = with pkgs; [ - jdk21_headless + jdk eclipse-cs345 ]; };