From a9ca7fb7ac09436fa0149b3fb7b601fd38aefc38 Mon Sep 17 00:00:00 2001 From: fortuneteller2k Date: Sat, 30 Dec 2023 23:52:36 +0800 Subject: [PATCH] strip down shell more --- overlays/shells.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/overlays/shells.nix b/overlays/shells.nix index 7b646f9..bcea8d9 100644 --- a/overlays/shells.nix +++ b/overlays/shells.nix @@ -8,11 +8,11 @@ preHook = ""; allowedRequisites = null; - initialPath = lib.singleton prev.coreutils.override { + initialPath = lib.singleton (prev.coreutils.override { aclSupport = false; attrSupport = false; gmpSupport = false; - }; + }); shell = lib.getExe (prev.bash.override { interactive = false; }); extraNativeBuildInputs = [ ];