forked from baracoder/nix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.nix
139 lines (132 loc) · 4.04 KB
/
vscode.nix
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
136
137
138
139
{vscode-with-extensions, vscode-utils, vscode-extensions, vscodium}:
vscode-with-extensions.override {
vscode = vscodium;
# When the extension is already available in the default extensions set.
vscodeExtensions = with vscode-extensions; [
bbenoist.Nix
ms-kubernetes-tools.vscode-kubernetes-tools
ms-vscode-remote.remote-ssh
ms-azuretools.vscode-docker
justusadam.language-haskell
formulahendry.auto-close-tag
redhat.vscode-yaml
vscodevim.vim
alanz.vscode-hie-server
]
# Concise version from the vscode market place when not available in the default set.
++ vscode-utils.extensionsFromVscodeMarketplace [
{
name = "vscode-power-mode";
publisher = "hoovercj";
version = "2.2.0";
sha256 = "0v1vqkcsnwwbb7xbpq7dqwg1qww5vqq7rc38qfk3p6b4xhaf8scm";
}
{
name = "ecdc";
publisher = "mitchdenny";
version = "1.3.0";
sha256 = "0hkiwxizdr9nfpgms65hw3v55qvqz3k2lnaji2lwx8bbb9iwal14";
}
{
name = "nixfmt-vscode";
publisher = "brettm12345";
version = "0.0.1";
sha256 = "07w35c69vk1l6vipnq3qfack36qcszqxn8j3v332bl0w6m02aa7k";
}
{
name = "gitlens";
publisher = "eamodio";
version = "10.2.1";
sha256 = "1bh6ws20yi757b4im5aa6zcjmsgdqxvr1rg86kfa638cd5ad1f97";
}
{
name = "git-graph";
publisher = "mhutchie";
version = "1.25.0";
sha256 = "126s0kzq0a0rp1dagyi2ks1vr91a4p8vn4y9yk2agx46xkcf8ycq";
}
{
name = "code-spell-checker";
publisher = "streetsidesoftware";
version = "1.9.0";
sha256 = "0ic0zbv4pja5k4hlixmi6mikk8nzwr8l5w2jigdwx9hc4zhkf713";
}
{
name = "syncify";
publisher = "arnohovhannisyan";
version = "4.0.4";
sha256 = "0fii948h47k6cd0cs92zmn1kirh3p9cl2h6rbc9kdp18ng4qqd64";
}
{
name = "bracket-pair-colorizer-2";
publisher = "CoenraadS";
version = "0.2.0";
sha256 = "0nppgfbmw0d089rka9cqs3sbd5260dhhiipmjfga3nar9vp87slh";
}
# databases
{
name = "sqltools";
publisher = "mtxr";
version = "0.22.11";
sha256 = "0vrc66bzpddc2ik05r2yxpzz6l0mzf79qfq96fccnm1fmn4cc5r6";
}
{
name = "sqltools-driver-mysql";
publisher = "mtxr";
version = "0.1.1";
sha256 = "1mzwk0r430z46qdmyz280n61cjk22zvlcdq92w3zhs497kf9pa48";
}
{
name = "sqltools-driver-sqlite";
publisher = "mtxr";
version = "0.1.0";
sha256 = "01r271kpjw8g9si9ikfgcff68l7zs9xq15yx80w5bgni2d3h2hwm";
}
{
name = "sqltools-driver-pg";
publisher = "mtxr";
version = "0.1.0";
sha256 = "00a98fvgnhr93ihb21m7v36bzhbpnxj0snzn6sa64m1brhng0qgw";
}
{
name = "mongodb-vscode";
publisher = "mongodb";
version = "0.1.0";
sha256 = "1xayri5ld76i6ww1jfxfhlv0mk09kxa3wxps5j6hxdxyvyy7jccz";
}
# dotnet
{
name = "csharp";
publisher = "ms-dotnettools";
version = "1.22.1";
sha256 = "1cvyn4vj20ipdmp6jhiv1a84jaxgbfpn4r1043ayassdlimvdsl8";
# npm i
# npm run compile
}
{
name = "Ionide-fsharp";
publisher = "Ionide";
version = "4.14.0";
sha256 = "0xdlknjmgn770pzpbw00gdqln9kkyksqnm1g9fcnrmclyhs639z4";
}
{
name = "Ionide-Paket";
publisher = "Ionide";
version = "2.0.0";
sha256 = "1455zx5p0d30b1agdi1zw22hj0d3zqqglw98ga8lj1l1d757gv6v";
}
{
name = "Ionide-FAKE";
publisher = "Ionide";
version = "1.2.3";
sha256 = "0ijgnxcdmb1ij3szcjlyxs2lb1kly5l26lg9z2fa7hfn67rrds29";
}
# haskell
{
name = "haskell";
publisher = "haskell";
version = "1.0.0";
sha256 = "0i5dljl5m42kiwqlaplbqi4bhq59456bxs0m0w1dzk80jxyfsv0i";
}
];
}