From ada46b794ae2e88321dab78159f75c18bd7100d6 Mon Sep 17 00:00:00 2001 From: BrunoQuaresma Date: Fri, 18 Aug 2023 13:00:10 +0000 Subject: [PATCH] chore: add zsh to dogfood --- flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index d6ade88c11f21..cc0f3f31b4d52 100644 --- a/flake.nix +++ b/flake.nix @@ -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.