From c4cd65e1cbdc5d75a9d9ca7c9b994d543065141f Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Fri, 18 Aug 2023 12:56:04 -0500 Subject: [PATCH] fix: remove nix bash from the dogfood image This was unnecessary. --- flake.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 9a39bce9f4263..65388506d554c 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 '' )