fix: remove nix bash from the dogfood image (#9195)

This was unnecessary.
This commit is contained in:
Kyle Carberry 2023-08-18 12:59:25 -05:00 committed by GitHub
parent bbaa057e15
commit 9e9c79dbd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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
''
)