Comment by ChocolateGod

6 days ago

I use NixOS, one of the annoying things to me is the documentation and error reports.

I swapped my installation to a Flake managed install a few months ago, and parts of my Nix files that were perfectly fine before started throwing out errors (specifically HomeManager), which no amount of Googling the error message that gone thrown got me any closer to a solution.

I looked at documentation recently to try and enable PGO/LTO and Zen 3 optimizations (don't mind compiling everything) and I think I saw at least 10 ways and none worked (gcc errors, etc).

This is why I haven't switched my NixOS to flakes yet. The community discussions always act as though flakes should be the default that everyone should use now, but I figure that the developers know what they're doing and haven't made them the blessed path yet for a reason. So far so good—my system is far more stable than it was under Debian and I've yet to run into anything that didn't have an easy answer.

I have a suspicion that because the Nix community is disproportionately likely to contain early adopters, the general mood in the forums is less risk-averse than I am with my primary stacks.

  • > I figure that the developers know what they're doing and haven't made them the blessed path yet for a reason.

    My take is: flakes don’t align with centralised nixpkgs and ultimately don’t solve any problems that can’t be solved without flakes.

    They’re just an interface for a decentralised module system. You can use them, they’re feature-complete, and they don’t align with nixpkgs: it doesn’t make sense for individual packages to have their own flakes, nixpkgs can already be loaded as a flake.

    FlakeHub tries to popularise flakes, but I don’t know if there is a flake discovery problem to solve.

    Ekala Project is designing a poly-repo alternative to nixpkgs (ekapkgs) and they don’t embrace flakes.

    So... Flakes have reached full maturity: a decentralised package format that has stalled its adoption status within the main Nix toolchain.

    • > My take is: flakes don’t align with centralised nixpkgs and ultimately don’t solve any problems that can’t be solved without flakes.

      I've turned to flakes to specifically solve some problems, and flaked solved them. To this day, flakes are still the only way to solve them.

      Flakes aren't default due to political reasons.

      8 replies →

  • I'm glad I'm not the only one who's grinding their gears with flakes.

    I decided to migrate to flakes because a lot of the documentation for things I wanted to do with NixOS required flakes. It took me at least a few hours to understand what the purpose of them was though.

    I just wish the documentation would be improved really, as an example https://nixos.wiki/wiki/Build_flags#Building_the_whole_syste... no longer works (gcc complains).

    • Be the change you want to see and help documenting the missing parts.

      Also that is the old wiki but the same stays in the new one.

Worth noting that ChatGPT et al. Are equally useless for debugging Nix. Frustrating that it’s so far behind. Error messages are often cryptic and misleading.

  • Yep, I thought ChatGPT was trained on Github but it's generated precisely 0 correct .nix files for me to date.

    • I suspect Sturgeons law is at work here. "90% of everything is crap"

      I can believe that especially with nix - there isn't a defined way to do things. Most flakes out there will be done by newcomers learning and flakes is relative new e.g. 2020. The documentation of nix is bad.

      SO ChatGPT3 had very little good stuff to learn from and later won't have much better.

      1 reply →