From b37b2ee8426f7a6ead4c4fbdc8f840ce4db1bf7d Mon Sep 17 00:00:00 2001 From: Greg Chadwick Date: Mon, 27 May 2024 09:42:32 +0100 Subject: [PATCH] Update devcontainer to use env-with-sim nix devshell --- .devcontainer/Dockerfile | 4 ++-- .devcontainer/devcontainer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 8c93966..ee12f2c 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -35,7 +35,7 @@ RUN sudo bash -c 'echo "substituters = https://cache.nixos.org https://nix-cache # Download/build/install everything required for the nix devshell by starting it # to run 'true' and immediately exit -RUN nix develop "github:lowRISC/sonata-software" -c "true" +RUN nix develop "github:lowRISC/sonata-software#env-with-sim" -c "true" ENV SHELL /bin/bash -CMD nix develop "github:lowRISC/sonata-software" +CMD nix develop "github:lowRISC/sonata-software#env-with-sim" diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 4bbc42a..81547d9 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -14,7 +14,7 @@ "path": "nix", "args": [ "develop", - "github:lowRISC/sonata-software" + "github:lowRISC/sonata-software#env-with-sim" ] } },