From 9e9c79dbd3725fd270c77fc254e7e1d70087fa81 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Fri, 18 Aug 2023 12:59:25 -0500 Subject: [PATCH] fix: remove nix bash from the dogfood image (#9195) This was unnecessary. --- flake.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 9a39bce9f4..65388506d5 100644 --- a/flake.nix +++ b/flake.nix @@ -16,7 +16,6 @@ # Use `nix flake update` to update the lock file if packages are out-of-date. devShellPackages = with pkgs; [ bat - bash cairo curl drpc.defaultPackage.${system} @@ -169,7 +168,7 @@ # Allow people to change shells! ( pkgs.writeTextDir "etc/shells" '' - ${pkgs.bash}/bin/bash + /bin/bash ${pkgs.zsh}/bin/zsh '' )