blob: ea8fd2c685b2047887e1a21c74f6a9a4cbe8d2cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
{ config, pkgs, ... }:
{
home.packages = [ pkgs.prismlauncher ];
home.file.".local/share/PrismLauncher/prismlauncher.cfg" = {
text = pkgs.lib.generators.toINI {} {
General = {
ApplicationTheme = "dark";
AutoCloseConsole = false;
AutomaticJavaDownload = false;
AutomaticJavaSwitch = true;
CatFit = "fit";
CatOpacity = 100;
CentralModsDir = "mods";
CloseAfterLaunch = false;
ConfigVersion = "1.3";
ConsoleFont = "DejaVu Sans Mono";
ConsoleFontSize = 11;
ConsoleMaxLines = 100000;
ConsoleOverflowStop = true;
DownloadsDir = "/home/cat/Downloads";
DownloadsDirWatchRecursive = false;
EnableFeralGamemode = false;
EnableMangoHud = false;
Env = "{}";
FallbackMRBlockedMods = 2;
IconTheme = "OSX";
IconsDir = "icons";
IgnoreJavaCompatibility = false;
IgnoreJavaWizard = false;
InstRenamingMode = "AskEverytime";
InstSortMode = "Name";
InstanceDir = "instances";
JavaArchitecture = "64";
JavaDir = "java";
JavaPath = "/nix/store/55mw2ly3dxh5008li72rx6ilc75hgvr0-openjdk-8u502-b01/bin/java";
Language = "en_US";
LastHostname = "box";
LaunchMaximized = false;
LowMemWarning = true;
MaxMemAlloc = 6016;
MinMemAlloc = 2048;
MinecraftWinHeight = 480;
MinecraftWinWidth = 854;
ModDependenciesDisabled = false;
ModMetadataDisabled = false;
MoveModsFromDownloadsDir = true;
NumberOfConcurrentDownloads = 6;
NumberOfConcurrentTasks = 10;
NumberOfManualRetries = 1;
OnlineFixes = false;
PastebinType = 3;
PermGen = 128;
ProxyAddr = "127.0.0.1";
ProxyPort = 8080;
ProxyType = "None";
QuitAfterGameStop = false;
RecordGameTime = true;
RequestTimeout = 60;
ShowConsole = false;
ShowConsoleOnError = true;
ShowGameTime = true;
ShowGameTimeWithoutDays = false;
ShowGlobalGameTime = true;
ShowModIncompat = false;
SkinsDir = "skins";
SkipModpackUpdatePrompt = false;
StatusBarVisible = false;
TheCat = false;
ToolbarsLocked = true;
UseDiscreteGpu = false;
UseNativeGLFW = false;
UseNativeOpenAL = false;
UseZink = false;
UserAskedAboutAutomaticJavaDownload = true;
};
};
force = true;
};
}
|