-
$ lx --no-project add luastatic
Error: No project found
Location:
/build/source/lux-cli/src/add.rs:44:43 Was checking out #64 and trying to find a way to make nix packages for individual deps (mostly to speed up my download times) Is there a global tree or a way to make global trees? |
Beta Was this translation helpful? Give feedback.
Answered by
mrcjkb
Aug 10, 2025
Replies: 1 comment
-
Some commands (like To install a package to the user-local tree, use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cootshk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some commands (like
add
,remove
) are for project management, so they don't work with--no-project
.Other commands operate on the user-local tree or on a project, depending whether you're in a project directory. That's what
--no-project
is for (perhaps the flag should be moved to the subcommands).To install a package to the user-local tree, use
lx install
.