this post was submitted on 02 Mar 2026
21 points (95.7% liked)

libre

10182 readers
9 users here now

Welcome to libre

A comm dedicated to the fight for free software with an anti-capitalist perspective.

The struggle for libre computing cannot be disentangled from other forms of socialist reform. One must be willing to reject proprietary software as fiercely as they would reject capitalism. Luckily, we are not alone.

libretion

Resources

  1. Free Software, Free Society provides an excellent primer in the origins and theory around free software and the GNU Project, the pioneers of the Free Software Movement.
  2. Switch to GNU/Linux! If you're still using Windows in $CURRENT_YEAR, take Linux Mint for a spin. If you're ready to take the plunge, flock to Debian and design your dream system!

Rules

  1. Be on topic: Posts should be about free software and other hacktivst struggles. Topics about general tech news should be in the technology comm or programming comm. That doesn't mean all posts have to be serious though, memes are welcome!
  2. Avoid using misleading terms/speading misinformation: Here's a great article about what those words are. In short, try to avoid parroting common Techbro lingo and topics.
  3. Avoid being confrontational: People are in different stages of liberating their computing, focus on informing rather than accusing. Debatebro nonsense is not tolerated.
  4. All site-wide rules still apply

Artwork

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] chgxvjh@hexbear.net 1 points 1 month ago (2 children)

In what way is it similar to NixOS?

[–] TheModerateTankie@hexbear.net 2 points 1 month ago

When I was testing out nix, and while it is more flexible and powerful, I ended up with a system that is pretty similar to how the atomic distros work.

I would essentially have a stable custom system, and then install everything I could at the user level with home-manager, which I think is best practice? It's annoying to have to rebuild everything when you install at the system level, anyway.

The atomics operate in a similar way. There is the system layer, which is basically a docker container, and then a user layer where you install whatever via flatpaks for gui's, homebrew for cli's, distrobox for anything not on either, or layering for programs that need system level access to work properly.

You can customize the base installation similar to how you can with nix, but instead of using the nix language it's customized like you could with a docker container. The biggest difference is that it's harder to customize the system layer because it requires github (although I think people have been able to do a self-hosted setup), and there is no nix-language equivalent for the config files.

Both are stable, and both allow you to fall back to a working setup if you bork something.

Both encourage containerized workflows, although nix can do that in a unique way with dev environments per directory.

In the end the atomic distros like bazzite set up everything close enough to how I would personally that it wasn't worth messing around with nix.

[–] invalidusernamelol@hexbear.net 1 points 1 month ago

The atomics are immutable, so you have to layer the packages on your base image. It's not fully the same as NixOS, but it's functionally similar since the OS is imaged every time you install something.