From a7c88406a6ae1fb0a170ec92179f8e3da756f7de Mon Sep 17 00:00:00 2001 From: Andreas Fuchs Date: Fri, 15 Mar 2024 12:00:06 -0400 Subject: [PATCH] busybox: Set shellPath up so that ash can be a login shell --- pkgs/os-specific/linux/busybox/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/os-specific/linux/busybox/default.nix b/pkgs/os-specific/linux/busybox/default.nix index c72be801aeea..ffeb82d9b41b 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/";