Files
ccl-nixos-dotfiles/modules/desktop/gaming/minecraft.nix
2025-07-25 21:22:24 +08:00

29 lines
383 B
Nix

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