-
Notifications
You must be signed in to change notification settings - Fork 0
/
systemconfiguration.example.json
108 lines (108 loc) · 2.72 KB
/
systemconfiguration.example.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
{
"SystemSetup": {
"localPSGallerySourcePath": "$env:USERPROFILE\\Scripts\\powershell\\LocalPSGallerySource",
"localPSGalleryRepoPath": "$env:USERPROFILE\\Scripts\\localpsgallery",
"gitConfiguration": {
"core.editor": "code --new-window --wait",
"pull.rebase": "false",
"init.defaultBranch": "main"
},
"scoopRegistryFiles": [
{
"RegistryFile": "7zip\\current\\install-context.reg",
"Description": "7zip registry"
},
{
"RegistryFile": "python\\current\\install-pep-514.reg",
"Description": "Python registry"
},
{
"RegistryFile": "vscode\\current\\install-context.reg",
"Description": "Visual Studio Code registry"
},
{
"RegistryFile": "vscode\\current\\install-associations.reg",
"Description": "Visual Studio Code associations"
},
{
"RegistryFile": "windows-terminal\\current\\install-context.reg",
"Description": "Windows Terminal registry"
}
],
"windowsFeatures": [
"Microsoft-Hyper-V",
"Containers-DisposableClientVM"
],
"registryChanges": [
{
"RegistryItemName": "LongPathsEnabled",
"RegistryItemDescription": "Long Paths",
"RegistryKeyPath": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\FileSystem",
"RegistryItemType": "DWORD",
"RegistryItemValue": "1"
},
{
"RegistryItemName": "EnableClipboardHistory",
"RegistryItemDescription": "Clipboard History",
"RegistryKeyPath": "HKCU:\\SOFTWARE\\Microsoft\\Clipboard",
"RegistryItemType": "DWORD",
"RegistryItemValue": "00000001"
}
],
"windowsTerminalSettingsPath": "$env:USERPROFILE\\Scripts\\WindowsTerminal",
"DefaultScoopBuckets": [
[
"extras",
""
],
[
"java",
""
],
[
"nerd-fonts",
""
],
[
"games",
""
],
[
"github-gh",
"https://github.com/cli/scoop-gh.git"
]
],
"DefaultScoopApps": [
"pwsh",
"oh-my-posh",
"vscode",
"7zip",
"git",
"gh",
"windows-terminal",
"FiraCode",
"FiraCode-NF"
],
"DOMAINNAMEScoopApps": [
"winmerge",
"msbuild-structured-log-viewer"
],
"DefaultWinGetApps": [
"Microsoft.PowerToys"
],
"[email protected]": "DOMAINNAME",
"npmPackagesToSkipProfileFor": [
"packagename1",
"packagename2"
],
"processNamesToSkipProfileFor": [
"processname1",
"processname2"
],
"ScoopConfiguration": {
"use_sqlite_cache": "TRUE",
"use_lessmsi": "TRUE",
"aria2-enabled": "FALSE"
}
}
}