We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1714d2 commit e753812Copy full SHA for e753812
2 files changed
.devcontainer/devcontainer.json
@@ -4,9 +4,6 @@
4
"dockerfile": "Dockerfile",
5
"args": { "VARIANT": "1" }
6
},
7
- "features": {
8
- "ghcr.io/devcontainers/features/nix:1": {}
9
- },
10
"customizations": {
11
"vscode": {
12
"extensions": [
.devcontainer/nix/devcontainer.json
@@ -0,0 +1,22 @@
1
+{
2
+ "name": "With Nix",
3
+ "build": {
+ "dockerfile": "../Dockerfile",
+ "args": { "VARIANT": "1" }
+ },
+ "features": {
+ "ghcr.io/devcontainers/features/nix:1": {}
+ "customizations": {
+ "vscode": {
+ "extensions": [
13
+ "EditorConfig.EditorConfig",
14
+ "rust-lang.rust-analyzer",
15
+ "sumneko.lua",
16
+ "tomoyukim.vscode-mermaid-editor"
17
+ ]
18
+ }
19
20
+ "onCreateCommand": "./scripts/setup-git.sh",
21
+ "remoteUser": "vscode"
22
+}
0 commit comments