feat: update

This commit is contained in:
2025-07-25 21:22:24 +08:00
parent 0b413e227c
commit 141f6f1b96
15 changed files with 61 additions and 164 deletions

View File

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