-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmock_studio_message_v2.json
135 lines (135 loc) · 3.58 KB
/
mock_studio_message_v2.json
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"services" : [{
"name": "Minecraft",
"desc": "Server for Minecraft java edition",
"logo": "<URL to image>",
"tags": [ "Game", "Server", "Proprietary"],
"specs": {
"ram": 1024,
"storage": 1024
},
"nixName": "minecraft-server",
"options": [
{
"name": "EULA",
"desc": "Whether you agree to Mojangs EULA. This option must be set to true to run Minecraft server.",
"nixName": "eula",
"type": "boolean",
"value": "true"
},
{
"name": "Declarative",
"desc": "Use declarative server configuration to alter serverProperties or the whitelist.",
"nixName": "declarative",
"type": "boolean",
"value": "true"
},
{
"name": "Firewall",
"desc": "Open ports in the firewall for the server.",
"nixName": "openFirewall",
"type": "boolean",
"value": "true"
},
{
"name": "Maximum players",
"desc": "Number of players who can join the server.",
"nixName": "serverProperties.max-players",
"type": "int",
"value": "100"
}
]
},
{
"name": "Openssh",
"desc": "SSH tunnel for manual tweaking and access to your machine. Warning: If you break the Xnode-Admin service you will need to fix it yourself or factory reset to regain control from the Studio.",
"logo": "<URL to image>",
"tags": [ "Administration", "Access-control" ],
"specs": {
"ram": 0,
"storage": 0
},
"nixName": "openssh",
"options": [
{
"name": "Password login",
"desc": "Whether ssh can be accessed using a password.",
"nixName": "settings.PasswordAuthentication",
"type": "boolean",
"value": "false"
},
{
"name": "Keyboard interactive login",
"desc": "Whether ssh can be accessed using a keyboard interactive login.",
"nixName": "settings.KbdInteractiveAuthentication",
"type": "boolean",
"value": "false"
}
]
},
{
"name": "Ollama",
"desc": "Play around with AI!",
"logo": "<URL to image>",
"tags": [ "AI", "LLM", "GPU", "Open-source" ],
"specs": {
"ram": 0,
"storage": 0
},
"nixName": "ollama",
"options": [
{
"name": "GPU acceleration",
"desc": "Enable cuda acceleration.",
"nixName": "acceleration",
"type": "string",
"value": "cuda"
}
]
},
{
"name": "Headscale",
"desc": "Securely access services on your Xnode",
"logo": "<URL to image>",
"tags": [ "Networking", "Open-source" ],
"specs": {
"ram": 0,
"storage": 0
},
"nixName": "headscale",
"options": [
{
"name": "Address",
"desc": "Bind to an address",
"nixName": "address",
"type": "string",
"value": "0.0.0.0"
},
{
"name": "Port",
"desc": "Port to bind to.",
"nixName": "port",
"type": "int",
"value": "10101"
},
{
"name": "Log format",
"desc": "Logging format",
"nixName": "log.level",
"type": "string",
"value": "json"
}
]
}
],
"networking": [{
"nixName":"firewall",
"options":[
{
"nixName":"enable",
"type":"boolean",
"value":"true"
}
]
}]
}