mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
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:
parent
88a45d6149
commit
02af02854d
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ let
|
||||||
|
|
||||||
root = {
|
root = {
|
||||||
uid = 0;
|
uid = 0;
|
||||||
shell = "/bin/bash";
|
shell = "${pkgs.bashInteractive}/bin/bash";
|
||||||
home = "/root";
|
home = "/root";
|
||||||
gid = 0;
|
gid = 0;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue