• apprehensively_human@lemmy.ca
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 year ago

    I thought I was finally finished distro hopping after I landed on Fedora, but then I found Nobara and then the whole RHEL drama started so I went back to Debian stable but then NixOS caught my attention.

    It will never end

    • pimeys@lemmy.nauk.io
      link
      fedilink
      arrow-up
      0
      ·
      1 year ago

      NixOS was for me the thing that stopped me from distro hopping and re-installations. I just don’t care anymore to switch to anything, everything works how I want and I can focus on using it.

      • LucidNightmare@lemm.ee
        link
        fedilink
        arrow-up
        2
        ·
        1 year ago

        I’m using Debian right now, and it has been the most stable, and battery efficient distro I’ve used on my laptop. I see NixOS a lot on here, and went to look it up. I couldn’t discern really what makes it good, so may I ask for your “review” of it compared to Debian?

        • pimeys@lemmy.nauk.io
          link
          fedilink
          arrow-up
          1
          ·
          1 year ago

          If you happen to customize your OS a lot, with NixOS you can define everything from one configuration: all your packages, your shell aliases, kernel parameters or for example the desktop wallpaper.

          You can push this config to GitHub and clone it to another NixOS machine and that one will have exactly the same packages, kernel parameters, shell aliases and wallpaper. Even the package versions, including all the libraries will be the same everywhere.

          You can even patch your tools from these configs, have custom kernels and go really crazy. When you commit your changes, they work exactly the same in all your machines. And on boot, you get a list of configurations, so you can boot to the previous config of your current changes broke something, go fix what you broke and retry.

          And, with nix the tool, your team can provide the flake.nix and flake.lock files in the software project you all work for. It will then make sure everybody gets the right versions from the dependencies, compilers, linters, etc. If it works for one, it works for all.

          Nix the tool let’s you try this out in systems like other Linux distros or removed. NixOS is an OS that is taking a step further and requiring you to define the whole system with Nix.

          Oh, and a sibling project Home Manager is great for reproducible dotfiles.