Skip to content

Commit

Permalink
strip down shell more
Browse files Browse the repository at this point in the history
  • Loading branch information
moni-dz committed Dec 30, 2023
1 parent c1160d0 commit 5ed3f33
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions overlays/shells.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@
cc = null;
preHook = "";
allowedRequisites = null;
initialPath = lib.singleton prev.toybox;
shell = lib.getExe prev.bash;

initialPath = lib.singleton prev.coreutils.override {
aclSupport = false;
attrSupport = false;
gmpSupport = false;
};

shell = lib.getExe (prev.bash.override { interactive = false; });
extraNativeBuildInputs = [ ];
};
};
Expand Down

0 comments on commit 5ed3f33

Please sign in to comment.