Hacker News new | ask | show | jobs
by onlydnaq 2239 days ago
> Could I have done all that in a single shell, then had it automatically cleaned up when I was done?

Yes, that is a pretty standard workflow for most nix users. You either set up a shell.nix for your project with all of its dependencies, or if you need a certain tool once you just write for example: ‘nix shell -p iotop’ to enter a shell where iotop is in the path.

1 comments

Wow, that's pretty great. I'm gonna spin up a Nix VM shortly, see how it goes.