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

libre

10182 readers
26 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
[–] gayspacemarxist@hexbear.net 1 points 1 week ago (1 children)

I probably need to learn more about channels, but I've been using flakes for a nix based project that I've been doing just because it makes it easier to compose different pieces of nix code without having to fork the nix packages repo, which is way too big for my scale to manage. I know there are issues with flakes, conceptually and from an organizational perspective, but there are some things that I like about them, that I wish were tractable, otherwise, mostly just due to how huge nixpkgs is.

I would like to break nixpkgs down into base system, desktop, and then some specializations for different types of server applications. Maybe it could just be one thing there, though. I would also like to replace the huge CDN approach that nix upstream uses with a distributed trustix-inspired peer to peer bit torrent setup.

That said I'm not really attached to flakes, they just seemed approachable. I didn't learn about the endural connection until after I'd already built a bunch of stuff lol

Depending on how much work finishing my objectives is, it may be worth switching to guix, but i am not a non-free purist. So there's definitely gonna be some friction with my distribution, either way, I guess. Since Lix is also opposed to flakes I'm really going against the grain in some areas.

[–] hello_hello@hexbear.net 2 points 1 week ago* (last edited 1 week ago) (1 children)

it may be worth switching to guix, but i am not a non-free purist.

The upside of Guix's thoroughness is that every package must be compiled from source, so this means that there are no random blobs or binary bootstraps scattered around like there is in nixpkgs.

that I wish were tractable, otherwise, mostly just due to how huge nixpkgs is.

Nix flake boosters love talking about how "reproducible" they are until you realize their solution to version pinning is to copy the entire package world, which is akin to cutting down a tree with a nuke. This is a well known problem even given the community name "100 pinnings of nixpkgs" and no one wants to shake the hornets nest.

Guix instead maintains its world as a git repository in the system so every user is compelled to have the latest Guix checkout and then use pinnings on packages themselves and not the entire package set.

Definitely recommend trialing Guix as much as you can, I don't really have any hope in NixOS since the org is so unwilling to break the silence on anything technical or community related. Also they recently obtained an enterprise grant for GitHub so you can see where their priorities and values lie.

[–] gayspacemarxist@hexbear.net 2 points 1 week ago

I do like the approach that lix and aux are seemingly working towards where there are smaller independent package collections that get linked together somehow. I'm not sure how that would all work, but I do think it's important to keep build size down to something a few motivated individuals can compile on affordable machines. Without something like trustix you inevitably end up needing a huge centralized build farm and CDN to have a useful binary cache. IMO that's the main obstacle to making a viable community driven nixos alternative.