this post was submitted on 16 Oct 2023
204 points (97.2% liked)
Linux
48077 readers
799 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
NixOS uses a naming convention for packages that keeps them all separate from each other, that's how you get
/nix/store/b6gvzjyb2pg0kjfwrjmg1vfhh54ad73z-firefox-118.0/
./usr
isn't used for packages and only contains/usr/bin/env
for compatibility, nothing else.The whole system is held together by nothing more than shell scripts, symlinks and environment variables, standard Unix stuff. Making it very easy to understand if you are already familiar with Linux.
"Declarative" means that you whole configuration happens in one Nix config file. You don't edit files in
/etc/
directly, you write your settings in/etc/nixos/configuration.nix
and all the other files are generated from there. Same is true for package installation, you add your packages to a text file and rebuild.If that sounds a little cumbersome, that's correct, but Nix has some very nice ways around that. Due to everything being nicely isolated from each other, you do not have to install software to use them, you can just run them directly, e.g.:
nix run nixpkgs#emacs
You can even run them directly from a Git repository if that repository contains a
flake.nix
file:nix run github:ggerganov/llama.cpp
All the dependencies will be downloaded and build in the background and garbage collected when they haven't been used in a while. This makes it very easy to switch between versions, run older versions for testing and all that and you don't have to worry about leaving garbage behind or accidentally breaking your distribution.
The downside of all this is that some proprietary third party software can be a problem, as they might expect files to be in
/usr
that aren't there. NixOS has ways around that (BuildFHSEnv
), but it is quite a bit more involved than just running asetup.sh
and hoping for the best.The upside is that you can install the Nix package manager on your current distribution and play around with it. You don't need to use the full NixOS to get started.