I know that a lot of what Nix does is working around its break from FHS, but I can imagine there are still things that seep through. Are there any unsolvable problems due to this?

I saw on this post that it is possible to use FHS on Nix. Does this solve all potential issues then?

    • MadMaurice
      link
      fedilink
      165 months ago

      Nix installs derivations into separate folders. A derivation can be a package, but can also be other things like configuration files, scripts or sources for packages. Nix doesn’t distinguish between these derivations by a name but rather by a hash created from their build instructions.

      For example two instances of the same package with a different version are two different derivations and thus nix can have both package versions installed without them interfering with each other. But this goes beyond just a package version. It is e.g. possible to have the same package with the same version but different patches applied, or relying on different versions of dependencies. Since their build instructions differ both can be installed simultaneously.

      This approach grants a variety of advantages. For example upgrading your NixOS system just installs new derivations of packages and configuration files that have changed, while keeping previous derivations until they’re garbage collected at a later time. This allows you to switch freely between both iterations of your system, for example if an update causes issues you can just revert back to before an update easily. Another advantage is that an unprivileged user can install packages they need without interfering with the rest of the system, for example an older python version or a newer one, or some software they want but the system does not provide.

      The price of having this kind of isolation between packages is that nixos cannot install binaries and libraries into common locations. Effectively /usr/bin only contains the env binary. If you’re familiar with shell scripting you might have run into lines such as #!/usr/bin/env bash. This env util will essentially search bash in your PATH variable and start it. Lines like #!/bin/bash however will not work, because there’s no bash installed in that location.

      Another case where a missing fhs is a problem is when using pre-compiled binaries. In contrast to binaries built through nix, which have their required libraries hardcoded as absolute paths, pre-compiled binaries you download usually only contain the name of the library they need, which works in a conventional fhs environment, because these libraries tend to be found in /libor /usr/lib. On NixOS neither of those are present. There two solutions to this. Either you create an fhs environment by listing the set of derivations to be symlinked into a chroot environment which mimics an FHS. Or you can install https://github.com/Mic92/nix-ld which automatically finds the required libraries the nix way if you start such a binary. There’s also steam-run which installs an fhs with most of the dependencies necessary to start Linux games from Steam.

      • @Lojcs@lemm.ee
        link
        fedilink
        15 months ago

        Either you create an fhs environment by listing the set of derivations to be symlinked into a chroot environment which mimics an FHS.

        Why isn’t this done on the actual system and by default? That would make it fhs compliant, no?

        • hallettj
          link
          fedilink
          English
          75 months ago

          If you put an FHS on the actual system you wouldn’t be able to install multiple versions of the same package, updates wouldn’t be atomic - you wouldn’t get the big selling points of Nix.

          • @Lojcs@lemm.ee
            link
            fedilink
            25 months ago

            The most recent one by default unless another is manually chosen. The nix packages can keep using their specific versions directly

            • @palebluethought@lemmy.world
              link
              fedilink
              English
              8
              edit-2
              5 months ago

              Now you’ll have a zillion users trying to install software in ways that violate all the assumptions that NixOS operates on, but which are still tightly coupled to your NixOS config. Now updates to your system, or even seemingly unrelated config changes (through some transitive dependency chain) can easily break that software.

              So now we’ve basically removed half the advantages that motivate Nix/OS in the first place, and when stuff breaks it will look like it’s Nix’s fault, even if it isn’t.

              On the other hand, nixpkgs is already the most comprehensive repository of system software out there, and for 99% of packages Nixifying it is pretty trivial. Hell, my NixOS config does that for 3 different GitHub repos right inline in my config.nix

            • MadMaurice
              link
              fedilink
              15 months ago

              Choosing the most recent one might be impossible if you have multiple installations of the same package with same version but different features enabled during the configure step.

              • @Lojcs@lemm.ee
                link
                fedilink
                05 months ago

                Conflict resolution is not an impossible task. You just need to have a sensible algorithm. I get that they don’t want to do it lest people abuse it instead of using nix but there isn’t a technical challenge that can’t be overcome.

                • MadMaurice
                  link
                  fedilink
                  05 months ago

                  Conflict resolution was not my point. Rather the question which the “most recent” between two almost identical installations…

                  • @Lojcs@lemm.ee
                    link
                    fedilink
                    05 months ago

                    That’s what I meant. How the default is chosen is irrelevant and is not my point. (You can pick the earliest installed among the latest version for example) The point is, it can be done and isn’t a technical challenge.

    • @fl42v@lemmy.ml
      link
      fedilink
      35 months ago

      So that it’s possible for different versions of software/libs to coexist on the same system

    • @OmnipotentEntity@beehaw.org
      link
      fedilink
      15 months ago

      Because the nix package manager places all system packages under /nix/store/uniquehash-packagename-version/

      Where the unique hash is obtained via a Merkel tree of all the inputs. So in particular, binaries and libraries exist underneath those directories, not in the places you would expect from FHS.

      In order to make the system actually work, environment variables are set up and executables are patched to refer to specific paths within the Nix Store.

    • @priapus@sh.itjust.works
      link
      fedilink
      English
      15 months ago

      A lot of features of the Nix package manager, such as having multiple versions of a package installed, don’t work with FHS.