-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchezmoi-schema.json
74 lines (74 loc) · 2.3 KB
/
chezmoi-schema.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"data": {
"type": "object",
"description": "Chezmoi data object for use in templates",
"properties": {
"ostype": {
"type": "string",
"enum": ["macOS", "crostini", "wsl"],
"description": "Determines behaviour of chezmoi, only includes files / config required for the specified platform"
},
"email": {
"type": "object",
"description": "Email addresses used in git commits",
"properties": {
"work": {
"type": "string"
},
"personal": {
"type": "string"
}
},
"required": ["work", "personal"]
},
"terminal_font": {
"type": "string",
"description": "Terminal font to use. It should be a mono spaced nerd font variant",
"default": "JetBrainsMono Nerd Font Mono"
},
"terminal_font_size": {
"type": "number",
"description": "Font size to use in terminal, JetBrains Mono recommends 13",
"default": 13
},
"features": {
"type": "object",
"description": "Feature flags that enable / disable functionality",
"properties": {
"neovim_nightly": {
"type": "boolean",
"description": "Enable neovim-nightly, fallback to latest neovim stable release (through nix-unstable)",
"default": false
}
},
"required": ["neovim_nightly"]
},
"github_enterprise_host": {
"type": "string",
"description": "Host of github enterprise"
},
"tailscale_name": {
"type": "string",
"description": "Tailscale name used for TLD when resolving hostanmes, see https://login.tailscale.com/admin/dns"
},
"neovim_dev_plugin_dir": {
"type": "string",
"description": "Directory of development neovim plugins"
}
},
"additionalProperties": false,
"required": [
"ostype",
"email",
"terminal_font",
"terminal_font_size",
"features",
"github_enterprise_host",
"tailscale_name"
]
}
}
}