What do you dislike about Nix/NixOS?

https://lemmy.opensupply.space/post/7725

What do you dislike about Nix/NixOS? - Open Supply

Could be areas of improvement as well

after reading a lot of the source code and spending +3 years getting experienced, I can say there are at least two fundamental flaws:

  • The messy mono-repo was never desgined to be searchable (many teams have dumped tons of effort and slapped together lots of hacks to make niche-package-versions even halfway searchable). Devbox is doing a good job of fixing this, but its not there yet.
  • The monorepo design is unmaintainable/unscalable from a package maintainer standpoint. There’s a ton of contributor burnout, there’s no real quality control on packages, to outsiders its not obvious how to report package-specific issues or how to edit/fix/contribute to a single package, and instead of 30min to publish a hello-world npm or cargo package, users need to make a PR on the core, and get it approved. Meaning publishing a hello-world package would get rejected anyways. The good news is flakes hub is fixing this, and I’m really excited for that.
  • The good is;

    • people have put a ton of effort in. Its truely amazing how many things work in nix despite how absurdly difficult it is to get things working with nix
    • it is pretty much as reproducable as it can be and nothing else is even remotely close.

    The messy mono-repo was never desgined to be searchable

    I’m not sure what you mean by “searchable”?

    search.nixos.org/packages exists and it’s generally pretty damn good.

    The monorepo design is unmaintainable/unscalable from a package maintainer standpoint. There’s a ton of contributor burnout, there’s no real quality control on packages

    There is contributor burnout and perhaps some quality issues here and there but the monorepo isn’t the reason for that. In fact, it’d be a lot worse if we had hundreds of smaller repos instead as wide-reaching changes would become basically impossible with our current manpower.

    There have been calls to fragment Nixpkgs for years but they’ve almost always been struck down because none of what was suggested would improve anything about our current maintenance issues.

    to outsiders its not obvious how to report package-specific issues

    You simply open an issue on GitHub. I don’t know how it could be any more clear.

    I just checked and we don’t explicitly document this in CONTRIBUTING.md but I don’t think we should need to. It’s just too obvious IMO.

    how to edit/fix/contribute to a single package

    github.com/NixOS/nixpkgs/blob/…/CONTRIBUTING.md#h…

    flakes hub is fixing this, and I’m really excited for that.

    FlakeHub fixes none of the maintenance issues of Nixpkgs.

    NixOS Search

    search.nixos.org/packages exists and it’s generally pretty damn good

    It’s actually not. If you search for go you get the go package, but if you search for go 1.21, no go package will even appear on the first page. The package you are looking for is somewhere on page 7 or 8.

    NixOS Search

    Indeed, that looks like a bug. The version field is there but it doesn’t appear to be searched.

    Could you open an issue on github.com/NixOS/nixos-search?

    GitHub - NixOS/nixos-search: Search NixOS packages and options

    Search NixOS packages and options. Contribute to NixOS/nixos-search development by creating an account on GitHub.

    GitHub