this post was submitted on 26 Feb 2024
20 points (100.0% liked)

Nix / NixOS

1654 readers
38 users here now

Main links

Videos

founded 1 year ago
MODERATORS
 

I just switched one of my systems over to NixOS from Arch and so far it seems interesting. One question I had is regarding the nix-shell. So I get the basic concept of it and that it allows creating a shell that has packages installed with that shell making ideal for dev environments. I've even seen talks where the suggest nix-shells over docker/podman, my question is how is persistent data (like databases) handled?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 8 points 6 months ago

Nix shell basically just downloads the software (if it's not already downloaded) and then modifies your PATH to include the new software.

Persistent data stay persistent.

Nix shell has one use case common with docker (local development), but other than that the solutions are not similar at all.