|
|
|
|
|
by setheron
1985 days ago
|
|
The big idea in Nix is the view that the filesystem is like mutable memory in a programming language. You wouldn't give access to memory raw without any safeguards.
(Typical package managers can just arbitrarily dump files or remove files) It takes a structured approach. Laying over a graph database on top of your filesystem which is read-only typically. This helps provide guarantees and also every application has its own hermetic sealed dependency closure. Nix is truly revolutionary and it's getting steady adoption. Give it a read if you don't know about it. You can adopt it on any Linux distro without using the full NixOS. I write a lot about it on my blog. |
|