about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2024-04-16 15:56:52 +0300
committerGitHub <noreply@github.com>2024-04-16 15:56:52 +0300
commit2b3411f879644eba46add53078cf6feacc85a05d (patch)
tree7716f3b9a3df9b74f9e103d3f3d346bae454682b /pkgs/os-specific
parent587b27b7a8c70d8e2964ce0fc3a90122c939e0fc (diff)
parenta7c88406a6ae1fb0a170ec92179f8e3da756f7de (diff)
Merge pull request #296189 from antifuchs/busybox-as-shell
busybox: Set shellPath up so that ash can be a login shell
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/busybox/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/busybox/default.nix b/pkgs/os-specific/linux/busybox/default.nix
index c72be801aeeae..ffeb82d9b41bf 100644
--- a/pkgs/os-specific/linux/busybox/default.nix
+++ b/pkgs/os-specific/linux/busybox/default.nix
@@ -159,6 +159,8 @@ stdenv.mkDerivation rec {
 
   doCheck = false; # tries to access the net
 
+  passthru.shellPath = "/bin/ash";
+
   meta = with lib; {
     description = "Tiny versions of common UNIX utilities in a single small executable";
     homepage = "https://busybox.net/";