From 0a56548ca2877f5b3e4ac308a365e052043be1e5 Mon Sep 17 00:00:00 2001 From: Birdee <85372418+BirdeeHub@users.noreply.github.com> Date: Tue, 10 Feb 2026 18:01:45 -0800 Subject: [PATCH] fix(wrapperModules.nushell): make it work in mac shebangs `wrapperImplementation = "binary"` to use `pkgs.makeBinaryWrapper` as the backend. This is not really for speed, it is about the same in terms of speed, however on mac shebangs need to be binaries. --- wrapperModules/n/nushell/module.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wrapperModules/n/nushell/module.nix b/wrapperModules/n/nushell/module.nix index 1d260bfb..e09d0b9c 100644 --- a/wrapperModules/n/nushell/module.nix +++ b/wrapperModules/n/nushell/module.nix @@ -38,6 +38,8 @@ "--env-config" = config."env.nu".path; }; + config.wrapperImplementation = "binary"; + config.package = lib.mkDefault pkgs.nushell; config.meta.maintainers = [ wlib.maintainers.birdee ];