Nix By Examples

Basics

The Nix Language

Flakes

functions

repl

...
nix-repl> let 
            add = a: b: a + b;
          in 
          add 1 2
3
next: packaging 101