···11+// For format details, see https://aka.ms/devcontainer.json. For config options, see the
22+// README at: https://github.com/devcontainers/templates/tree/main/src/rust
33+{
44+ "name": "Rust",
55+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
66+ "image": "mcr.microsoft.com/devcontainers/rust:1-1-bullseye",
77+ "features": {
88+ "ghcr.io/devcontainers/features/github-cli:1": {},
99+ "ghcr.io/devcontainers/features/nix:1": {}
1010+ },
1111+1212+ // Use 'mounts' to make the cargo cache persistent in a Docker Volume.
1313+ // "mounts": [
1414+ // {
1515+ // "source": "devcontainer-cargo-cache-${devcontainerId}",
1616+ // "target": "/usr/local/cargo",
1717+ // "type": "volume"
1818+ // }
1919+ // ]
2020+2121+ // Features to add to the dev container. More info: https://containers.dev/features.
2222+ // "features": {},
2323+2424+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
2525+ // "forwardPorts": [],
2626+2727+ // Use 'postCreateCommand' to run commands after the container is created.
2828+ "postCreateCommand": "nix develop --experimental-features \"nix-command flakes\""
2929+3030+ // Configure tool-specific properties.
3131+ // "customizations": {},
3232+3333+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
3434+ // "remoteUser": "root"
3535+}