feat(langs): java

This commit is contained in:
2025-07-31 14:53:46 +08:00
parent f730d8d118
commit 244844242f
5 changed files with 28 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
{
config,
lib,
pkgs,
...
}:
lib.my.makeSwitch {
inherit config;
optionName = "java";
optionPath = [
"coding"
"langs"
"java"
];
config' = {
my.home.home.packages = with pkgs; [
openjdk24
];
};
}