
nix-env --install <package> in a host terminal. package names can be found here - https://search.nixos.org/packagesnix-env --install brave only returns error: selector 'brave' matches no derivations However, if I do nix profile install nixpkgs#brave that installs brave. Then if I want to uninstall, I have to find what it's referred to by doing nix profile list |grep brave and on the basis of that do nix profile remove legacyPackages.x86_64-linux.brave. So I guess that's the right way to do it???? If anyone else has any recommendations, I'd love to hear.nix-env --install appnix-env --uninstall appnix-env --upgrade (optional: app)nix-collect-garbage -d
nix-env --install <package>nix-env --install braveerror: selector 'brave' matches no derivationsnix profile install nixpkgs#bravenix profile list |grep bravenix profile remove legacyPackages.x86_64-linux.bravenix-env --install appnix-env --uninstall appnix-env --upgrade (optional: app)nix-collect-garbage -d