1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00
home-manager/modules/programs/prismlauncher.nix
zorrobert b4051ef5b9 prismlauncher: add module
This PR adds a module with basic options for PrismLauncher,
a FOSS Minecraft launcher / mod manager.
2024-11-05 16:48:56 +01:00

145 lines
4.5 KiB
Nix
Executable file

{ config, lib, pkgs, ... }:
let
cfg = config.programs.prismlauncher;
# set config path depending on the OS
configPath = if pkgs.stdenv.isDarwin then
"${config.xdg.dataHome}/Application Support/PrismLauncher"
else
"${config.xdg.dataHome}/PrismLauncher";
in {
meta.maintainers = [ lib.hm.maintainers.zorrobert ];
options.programs.prismlauncher = {
enable = lib.mkEnableOption "prismlauncher";
package = lib.mkOption {
type = lib.types.package;
default = pkgs.prismlauncher;
defaultText = lib.literalExpression "pkgs.prismlauncher";
description = "The PrismLauncher package to use.";
};
extraConfig = lib.mkOption {
type = lib.types.attrs;
default = { };
example = {
General = {
ApplicationTheme = "system";
AutoCloseConsole = false;
BackgroundCat = "kitteh";
};
};
description = "Additional settings for prismlauncher.cfg";
};
### Launcher
launcher = {
instances = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
example = "instances";
description = "The folder used by PrismLauncher to store instances.";
};
mods = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
example = "mods";
description = "The folder where PrismLauncher searches for local mods.";
};
icons = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
example = "icons";
description = "The folder where PrismLauncher stores custom icons";
};
downloads = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
example = "/home/username/Downloads";
description = "The folder PrismLauncher uses for downloads.";
};
};
### Java
java = {
maximumMemoryAllocation = lib.mkOption {
type = lib.types.nullOr lib.types.int;
default = null;
example = 4096;
description =
"The maximum amount of memory Minecraft is allowed to use.";
};
path = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
example =
"/nix/store/ly19kvgvcl2if4i3hv60x1sg7g69vzyv-openjdk-21+35/bin/java";
description = "The Java Runtime path for PrismLauncher.";
};
};
### Language
language = {
language = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
example = "en_GB";
description = "The language used by PrismLauncher";
};
useSystemLocales = lib.mkOption {
type = lib.types.nullOr lib.types.bool;
default = null;
description = "Set the language to the system default";
};
};
};
config = lib.mkIf cfg.enable {
home.packages = [ cfg.package ];
home.activation = {
createPrismLauncherConfig = lib.hm.dag.entryAfter [ "linkGeneration" ]
(lib.concatStringsSep "\n" (
# map defined options to setting names in prismlauncher.cfg and filter out undefined options
(lib.attrsets.mapAttrsToList (name: value: ''
${pkgs.libsForQt5.kconfig}/bin/kwriteconfig5 --file ${configPath}/prismlauncher.cfg --group 'General' --key '${name}' '${
builtins.toString value
}'
'') (lib.attrsets.filterAttrsRecursive (n: v: v != null) {
### Launcher
InstanceDir = cfg.launcher.instances;
CentralModsDir = cfg.launcher.mods;
IconsDir = cfg.launcher.icons;
DownloadsDir = cfg.launcher.downloads;
### Minecraft
### Java
MaxMemAlloc = cfg.java.maximumMemoryAllocation;
JavaPath = cfg.java.path;
### Language
Language = cfg.language.language;
UseSystemLocale = cfg.language.useSystemLocales;
### Custom Commands
### Environment Variables
### Proxy
### External Tools
### Accounts
### APIs
}))
# add settings from extraConfig
++ (builtins.map (group:
lib.concatStringsSep "\n" ((lib.attrsets.mapAttrsToList
(name: value: ''
${pkgs.libsForQt5.kconfig}/bin/kwriteconfig5 --file ${configPath}/prismlauncher.cfg --group '${group}' --key '${name}' '${value}'
'') cfg.extraConfig.${group})))
(builtins.attrNames cfg.extraConfig))));
};
};
}