-
In the README, it states:
I believe this is a great project, particularly because it has two advantages over just: the ability to work entirely within Nix, and the integration with pkgs.writeShellApplication, allowing the use of ShellCheck. However, I’m curious to know why just is being recommended instead of this project. What are the reasons behind this recommendation? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You can still use
|
Beta Was this translation helpful? Give feedback.
You can still use
pkgs.writeShellApplication
when usingjust
, by adding it to eitherpackages
orapps
flake output, and then runningnix run
from thejustfile
accordingly. Alternatively, you can put those scripts in your devShells'snativeBuildInputs
, and then directly use them injustfile
, if you are usingjust
always from the devShell.just
also provides shell completion, but mission-control does not (#4).