That's not entirely true, unless you choose to nixify everything. You can just have a basic Nix configuration that installs whatever programs you need, then use stow (or whatever symlink manager you prefer) to manage the rest of your config.
You can't entirely forget that you're on NixOS because of FHS noncompliance but even then getting nix-ld
to work doesn't require a lot of effort.
Nu's
find
builtin isn't a GNUfind
repacement. I think what you actually want isls
piped intowhere
:I do question the choice to alias a well-known program with a builtin that does something entirely different. You can also use
^find
to avoid calling the builtin. I would've expected\find
(bash-like) orcommand find
(fish-like) to work as well, but alas...