Files
develnixos.new/.devcontainer/devcontainer.json
2024-06-29 14:37:35 +00:00

21 lines
611 B
JSON

{
"name": "Alpine",
"image": "mcr.microsoft.com/devcontainers/base:alpine",
"postCreateCommand": "sudo apk add nix nix-dev nix-doc nix-manual nix-bash-completion && sudo chown -R vscode:vscode /nix && echo 'experimental-features = nix-command flakes' | sudo tee -a /etc/nix/nix.conf",
"runArgs": [
"--userns=keep-id"
],
"containerUser": "vscode",
"customizations": {
"vscode": {
"extensions": [
"jnoortheen.nix-ide",
"ms-azuretools.vscode-docker",
"eamodio.gitlens",
"streetsidesoftware.code-spell-checker",
"timonwong.shellcheck",
"foxundermoon.shell-format"
]
}
}
}