wiki/notebook/lang.nix.org
foo-dogsquared ffbd770528 Update Nix-related notes
Pretty incomplete but it is going to be... :)
2021-12-28 21:13:35 +08:00

1.5 KiB

Nix language

Nix can be aptly described as JSON but with functions. While you can make Nix work with basic configurations, you need to know the details if you're creating packages.

You can actively play with the language by running nix repl. This is just a personal reference note, the recommended resource for learning the language is the beloved Nix pills.

What is it for?

Builtins

  • builtins.toString ./. will print out the current directory.
  • builtins.getFlake $PATH

Imports

  • the import builtin will simply import the Nix expression given a path.
  • because of the functional paradigm, you'll often see the builtin used with the parameters in one go — e.g., import <nixpkgs> { } which will import nixpkgs from one of the module paths with the default attribute set.

TODO Standard library

  • nixpkgs has a standard library that comes with functions mitigating against the verbosity for packaging or simply convenience