this post was submitted on 08 Aug 2026
36 points (100.0% liked)
libre
10232 readers
1 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.

Resources
- 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.
- Switch to GNU/Linux! If you're still using Windows in
$CURRENT_YEAR, try a GNU/Linux distribution.
Rules
- 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!
- 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.
- Avoid being confrontational: People are in different stages of liberating their computing, focus on informing rather than accusing. Debatebro nonsense is not tolerated.
- All site-wide rules still apply
Artwork
- Xenia was meant to be an alternative to Tux and was created (licensed under CC0) by Alan Mackey in 1996.
- Comm icon (of Xenia the Linux mascot) was originally created by @ioletsgo
- Comm banner is a close up of "Dorlotons Degooglisons" by David Revoy (CC-BY 4.0) for Framasoft
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
Europeans. empoc perspectives are treated as community fracturing.
just curious about this, I've only looked at nix a little bit. isn't the constant rebuilding+data duplication a problem on the local machine? why petabytes of CI/CD? what are they doing with it?
Because not only do they keep a copy of the most recent versions but also many snapshots of versions before that.
Traditional distributions deliver software via software mirrors. So updates replace the existing software in-place and so is no longer accessible (this is why "apt update" and "apt upgrade" are semantically different). Sometimes archives are kept, sometimes not.
And given that NixOS uses strictly hermetic packaging, a change in a dependent package triggers a rebuild. Traditional distributions use dynamic linking to avoid recompilation but NixOS essentially statically links all software (compiled or not) via store path.
With the genuinely fascist flakes tooling (it was invented by a neo-nazi for big tech): now users and packagers can be expected to differ by commit basis which means literally nothing can be predicted by NixOS and so the NixOS cache service keeps many, many copies of packages so as to not mess anyone up.
NixOS almost went bankrupt from their cache service (which had a bill in the tens of thousands) and is utterly reliant on a AWS sponsorship.
forking nixos is really trivial since the entire OS is one repo. IMO the cache is supposed to act like a moat to push contributors towards nixpkgs. flakes in many ways facilitate fracturing the ecosystem because its easier to compose your own spin. I'm pretty sure that's how DetNix was able to slowly move off of nixpkgs. Maybe its malicious, but channels basically force you to build your own parallel infrastructure. Flakes have many flaws, don't get me wrong, and I don't think they should be in core, but they aren't useless.
I think NixOS could be managed in a more traditional way to lower the hosting cost. These guys are wasteful because there's very little pressure to optimize their setup. Nix facilitates waste to an extent, but most software is inefficient unless you take steps to fix it.
For my tiny nix distro, I'm perfectly happy asking my users to compile and cache their entire own shit a la gentoo. I'm treating the cache as a nice-to-have. Hopefully some day the Lix community will come up with a cooperative cache proposal (maybe based on trustnix and bit torrent or yggdrasil) that's both scalable and secure.