dockerImage: fix root shell

Currently root's shell is set to a path that does not exist; this change
sets it to the correct path to bash
This commit is contained in:
Matthew Kenigsberg 2022-09-14 15:35:56 -06:00
parent 88a45d6149
commit 02af02854d
No known key found for this signature in database
GPG Key ID: 5DFF42F2615122A8
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ let
root = {
uid = 0;
shell = "/bin/bash";
shell = "${pkgs.bashInteractive}/bin/bash";
home = "/root";
gid = 0;
};