add nouveau and java tools to dev container
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 3920cd9..491b2ec 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -23,7 +23,14 @@
     // Your code will live inside the volume created for the container under /workspace.
     "workspaceMount": "target=/workspaces/couchdb,type=volume",
     "workspaceFolder": "/workspaces/couchdb",
-    "postCreateCommand": "./configure && make",
+    "postCreateCommand": "./configure --enable-nouveau && make",
 
-    "extensions": ["erlang-ls.erlang-ls"]
-}
\ No newline at end of file
+    "customizations": {
+        "vscode": {
+            "extensions": [
+                "erlang-ls.erlang-ls",
+                "redhat.java"
+            ]
+        }
+    }
+}