So I’ve recently taken an interest in these three distros:

All of these offer something very interesting:
Access to (basically) all Linux-capable software, no matter from what repo.

Both NixOS and blendOS are based on config files, from which your system is basically derived from, and Vanilla OS uses a package manager apx to install from any given repo, regardless of distribution.

While I’ve looked into Fedora Silverblue, that distro is limited to only install Flatpaks (edit: no, not really), which is fine for “apps”, but seems to be more of a problem with managing system- and CLI tools.

I haven’t distro hopped yet, as I’m still on Manjaro GNOME on my devices.


What are your thoughts on the three distros mentioned above?
Which ones are the most interesting, and for what reasons?

Personally, I’m mostly interested in NixOS & blendOS, as I believe they may have more advantages compared to Arch;

What do you think?

  • Rikudou_Sage@lemmings.world
    link
    fedilink
    arrow-up
    2
    ·
    11 个月前

    nix-env is used to install packages in a similar way to apt or yum - you install a package, it gets downloaded and installed. This way of installing goes pretty much against the whole idea behind immutable systems.

    The clean way is to add a package to your configuration file (and reconstruct your OS from that), or use a nix-shell if you need the package only temporarily.

    • tanjaOP
      link
      fedilink
      arrow-up
      1
      ·
      11 个月前

      Oh, ok

      So I should reinstall the OS every time I change my config?
      Is this like the “deployments” from rpm-ostree in Fedora Silverblue?

      • Rikudou_Sage@lemmings.world
        link
        fedilink
        arrow-up
        2
        ·
        11 个月前

        You just run sudo nixos-rebuild switch and it makes your system match whatever is in your configuration file (packages, services, hardware drivers, config files etc.).