How to add wrapped nushell to environment.shells? #315
-
|
I am wrapping nushell using the modules system. When trying environment.shells = [ self.packages.${pkgs.stdenv.hostPlatform.system}.nushell ];nixos-rebuild complains that Currently, I am doing this environment.shells = [ (lib.getExe selfpkgs.nushell) ]; |
Beta Was this translation helpful? Give feedback.
Answered by
BirdeeHub
Mar 2, 2026
Replies: 2 comments
-
|
Here's my nushell wrapper: https://github.com/rachitvrma/nixdots/blob/master/modules/wrappedPackages/nushell/nushell.nix |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I did not add config.passthru.shellPath = "/bin/nu";To the nushell module. I should do that. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rachitvrma
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I did not add
To the nushell module. I should do that.