2024-01-05 22:24:55 +08:00
|
|
|
{ pkgs
|
|
|
|
, lib
|
|
|
|
, config
|
|
|
|
, ... }: with lib; let
|
|
|
|
cfg = config.home.minecraft;
|
2024-01-07 21:51:12 +08:00
|
|
|
persist = [ ".local/share/PrismLauncher" ];
|
2024-01-05 22:24:55 +08:00
|
|
|
in {
|
|
|
|
options.home.minecraft = {
|
|
|
|
enable = mkEnableOption "minecraft game launcher and jvm";
|
2024-01-07 21:51:12 +08:00
|
|
|
allUsers = mkEnableOption "set up for all users";
|
2024-01-05 22:24:55 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
users.homeModules = [
|
|
|
|
# this module passes minecraft configuration to home-manager
|
|
|
|
{ passthrough.minecraft = cfg; }
|
|
|
|
];
|
|
|
|
|
2024-01-07 21:51:12 +08:00
|
|
|
users.home.persist.directories = with cfg; mkIf (enable && allUsers) persist;
|
|
|
|
users.home.persistApp.directories = with cfg; mkIf (enable && !allUsers) persist;
|
2024-01-05 22:24:55 +08:00
|
|
|
};
|
|
|
|
}
|