Files
ccl-nixos-dotfiles/modules/desktop/gaming/minecraft.nix
2025-04-13 15:09:14 +08:00

28 lines
345 B
Nix

{
config,
lib,
pkgs,
...
}:
lib.my.makeSwitch {
inherit config;
optionName = "minecraft";
optionPath = [
"desktop"
"gaming"
"minecraft"
];
config' = {
my.home.home.packages = with pkgs; [
hmcl
openjdk21
];
my.persist.homeDirs = [
".minecraft"
".local/share/hmcl"
];
};
}