chore: add zsh to dogfood (#9178)

This commit is contained in:
Bruno Quaresma 2023-08-18 10:05:02 -03:00 committed by GitHub
parent f4f3132120
commit 8db3869415
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -61,6 +61,7 @@
vim
yq-go
zip
zsh
zstd
];
@ -75,7 +76,7 @@
};
# This is an intermediate stage that adds sudo with the setuid bit set.
# Nix doesn't allow setuid binaries in the store, so we have to do this
# in a separate stage.
# in a separate stage.
intermediateDevEnvImage = pkgs.dockerTools.buildImage {
name = "intermediate";
fromImage = baseDevEnvImage;
@ -113,7 +114,7 @@
# Using Nix instead of Docker is **significantly** faster. This _build_
# doesn't really build anything, it just copies pre-built binaries into
# a container and adds them to the $PATH.
#
#
# To test changes and iterate on this, you can run:
# > nix build .#devEnvImage && ./result | docker load
# This will import the image into your local Docker daemon.