From 720cd43a40a7f17e7985cb9f9429692dea434677 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 15 Aug 2022 23:19:05 -0400 Subject: [PATCH] tweak(java): add clang-tools for clang-format --- profiles/develop/programming/java.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/profiles/develop/programming/java.nix b/profiles/develop/programming/java.nix index e6630cc..2d3f3f6 100644 --- a/profiles/develop/programming/java.nix +++ b/profiles/develop/programming/java.nix @@ -1,5 +1,6 @@ { pkgs, ... }: { environment.systemPackages = with pkgs; [ openjdk17 + clang-tools ]; }