Heya, been hearing about NixOS for a long time now, mostly from the peeps over at the Linux Unplugged podcast. So was thinking about jumping onto the nix-train, however it seems like it has a learning curve. Does anyone have any good learning resources, blog-posts, guides, whatever beans that you used to get started with NixOS?

Appreciate any tips ❄️

  • pruneaue [they/she]
    link
    fedilink
    27
    edit-2
    5 months ago

    Im on my own NixOS journey right now, so i cant fully vouch for all this yet. Here are my bookmarks for Nix/NixOS learning resources:

    Apart from all this, ive learned the most from a mix of looking at other people’s configurations and reading source code. The documentation is super messy, especially if you want to make use of flakes (which i personally recommend from the get go).

  • robotdna
    link
    fedilink
    English
    165 months ago

    NixOS docs themselves are a tad lax, but it will get better.

    Learning nix itself is also important:

    https://zero-to-nix.com/

    Just this morning I was having issues with a wacky dual-boot install with NixOS and Windows sharing an EFI partition, and quite interestingly ChatGPT and I were able to troubleshoot the process and get it resolved in under half and hour. I was really impressed by the specific configurations it was giving me for my /etc/nixos/configuration.nix , so that is also another resource you may consider leaning on when you run into walls in other documentation sources.

    • Mr. ForagerOP
      link
      45 months ago

      Thanks for the tip, and nice to hear about your experience too 👍

  • zelifcam
    link
    English
    8
    edit-2
    5 months ago

    deleted by creator

  • Atemu
    link
    fedilink
    75 months ago

    The best way I know of is to get yourself a VM and get into the weeds; try to configure a system to your liking.

    Follow the NixOS manual. The Wiki is unofficial; often opinionated, out of date or just plain wrong. Take it with a grain of salt. The canonical source of documentation is the NixOS manual and it’s not nearly as bad as you may have heard.

    Make extensive use of https://search.nixos.org/options or man configuration.nix. Finding and making proper use of options and the module system is the bread and butter of using NixOS.

    Eventhough everyone and their mom will recommend them to you for nebulous reasons, ignore flakes for now. You will know when you’ll benefit from using them; namely when you need to use something outside of NixOS/Nixpkgs. You’re going to have enough to figure out with plain old NixOS on its own though; I don’t have external dependencies in my config to this day.

    To wrap it up, make sure to ask the community if something’s not working as expected: https://github.com/NixOS/nixpkgs#community

  • @[email protected]
    link
    fedilink
    45 months ago

    Since you’re listening to LUP anyways, the Nix Nerds room on their Matrix is a great resource as well.

  • SavvyWolf
    link
    fedilink
    English
    45 months ago

    I’ve actually been getting into NixOS recently; interested in replacing an old server I’ve had for like 10 years with something I can just build from a bunch of config files.

    Can confirm it is confusing and I have no idea how anything works. :D

    In my searches, I’ve come across https://nixos.org/guides/nix-pills/ , which I’ve gone through a few chapters of - seems good so far.

  • Rikudou_Sage
    link
    fedilink
    25 months ago

    I just dived in and learned as I went (still learning actually). I solve problems as they come.

  • @[email protected]
    link
    fedilink
    25 months ago

    After you’re done with the initial setup, I’ve found looking for nix code on GitHub to be very useful for seeing how to do things.