I recently took up Bazzite from mint and I love it! After using it for a few days I found out it was an immutable distro, after looking into what that is I thought it was a great idea. I love the idea of getting a fresh image for every update, I think for businesses/ less tech savvy people it adds another layer of protection from self harm because you can’t mess with the root without extra steps.

For anyone who isn’t familiar with immutable distros I attached a picture of mutable vs immutable, I don’t want to describe it because I am still learning.

My question is: what does the community think of it?

Do the downsides outweigh the benefits or vice versa?

Could this help Linux reach more mainstream audiences?

Any other input would be appreciated!

  • rumba@lemmy.zip
    link
    fedilink
    English
    arrow-up
    8
    ·
    18 hours ago

    Then you have NixOS, which is declarative, and fairly immutable.

    You don’t have to reboot to make changes, but you can’t just run unlinked binaries either.

    You can’t do things like edit your hosts table or modify the FS for cron jobs. The application store is unwritable, but you can sync new apps into it .

    You have to make changes to the config file and run a rebuild as root.

    • nomen_dubium@startrek.website
      link
      fedilink
      arrow-up
      1
      ·
      6 hours ago

      just for clarity: you can modify stuff like hosts or cron jobs but it’d get overwritten iirc? you can also make the change in the config and have it persist (reproducibility being the main point, not disallowing you to edit your files)

      • rumba@lemmy.zip
        link
        fedilink
        English
        arrow-up
        1
        ·
        4 hours ago

        No, that file is located in the nix store and linked back, If you become root and try to edit /etc/hosts It will complain that you cannot edit the linked file.

        If you go and try to edit the store directly you will meet the same kind of dead ends because /nix/store is a ro bind mount

        With enough root access, time and persistence you could eventually unwrap its flavor of immutability which is why I said mostly immutable. Compared to most operating systems where you can just slip a quick edit into a cron job it’s leagues ahead.