Nix Package Manager On MacOS - Easy Tutorial

Поділитися
Вставка
  • Опубліковано 7 лют 2025
  • Today I am showing you how to install the Nix Package manager on MacOS

КОМЕНТАРІ • 7

  • @AidanJBennett
    @AidanJBennett Рік тому +1

    Great video. Thanks for making this video. It was super helpful to reference when installing the nix package manager.

  • @Kfoo-dj4md
    @Kfoo-dj4md Рік тому +3

    Now I can nixpill my macOS friends too 😎

  • @explorer945
    @explorer945 8 місяців тому

    What is the advantage over brew

    • @TechSupportOnHold1
      @TechSupportOnHold1  8 місяців тому +2

      There are several advantages: 1. It’s a declarative setup so you can store your configuration on GitHub or so and pull it whenever needed (also helps with versioning of different configs) 2. It’s not just a package manager like home brew but you can declare package specific configurations for example via home manager (think of that as an add on for nix) to store a neovim configuration. So whenever you don’t need to manually copy them over etc. 3. Nix-shells, these are basically container playbooks where you can set dev environments or other things and separate those and their dependencies from the rest of the system . So you can have multiple versions of the same dependency (separated by the shells) on the same system without them even seeing each other. 4. You can have both nix and home brew at the same time there is no need to replace one with the other.

    • @explorer945
      @explorer945 8 місяців тому

      @@TechSupportOnHold1 it would be great to show a video in setting it up on mac and show couple of use cases (multiple dev environments, package management etc). do you have any recommendations?!