Files
nixos-dotfiles/modules/desktop/gaming/minecraft.nix
2025-08-02 18:05:56 +08:00

29 lines
377 B
Nix

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