├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── book.toml ├── custom.css ├── default.nix ├── pills ├── 00-preface.md ├── 01-why-you-should-give-it-a-try.md ├── 02-install-on-your-running-system.md ├── 03-enter-environment.md ├── 04-basics-of-language.md ├── 05-functions-and-imports.md ├── 06-our-first-derivation.md ├── 07-working-derivation.md ├── 08-generic-builders.md ├── 09-automatic-runtime-dependencies.md ├── 10-developing-with-nix-shell.md ├── 11-garbage-collector.md ├── 12-inputs-design-pattern.md ├── 13-callpackage-design-pattern.md ├── 14-override-design-pattern.md ├── 15-nix-search-paths.md ├── 16-nixpkgs-parameters.md ├── 17-nixpkgs-overriding-packages.md ├── 18-nix-store-paths.md ├── 19-fundamentals-of-stdenv.md ├── 20-basic-dependencies-and-hooks.md └── SUMMARY.md ├── release.nix └── theme └── highlight.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/book.toml -------------------------------------------------------------------------------- /custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/custom.css -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/default.nix -------------------------------------------------------------------------------- /pills/00-preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/00-preface.md -------------------------------------------------------------------------------- /pills/01-why-you-should-give-it-a-try.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/01-why-you-should-give-it-a-try.md -------------------------------------------------------------------------------- /pills/02-install-on-your-running-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/02-install-on-your-running-system.md -------------------------------------------------------------------------------- /pills/03-enter-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/03-enter-environment.md -------------------------------------------------------------------------------- /pills/04-basics-of-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/04-basics-of-language.md -------------------------------------------------------------------------------- /pills/05-functions-and-imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/05-functions-and-imports.md -------------------------------------------------------------------------------- /pills/06-our-first-derivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/06-our-first-derivation.md -------------------------------------------------------------------------------- /pills/07-working-derivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/07-working-derivation.md -------------------------------------------------------------------------------- /pills/08-generic-builders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/08-generic-builders.md -------------------------------------------------------------------------------- /pills/09-automatic-runtime-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/09-automatic-runtime-dependencies.md -------------------------------------------------------------------------------- /pills/10-developing-with-nix-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/10-developing-with-nix-shell.md -------------------------------------------------------------------------------- /pills/11-garbage-collector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/11-garbage-collector.md -------------------------------------------------------------------------------- /pills/12-inputs-design-pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/12-inputs-design-pattern.md -------------------------------------------------------------------------------- /pills/13-callpackage-design-pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/13-callpackage-design-pattern.md -------------------------------------------------------------------------------- /pills/14-override-design-pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/14-override-design-pattern.md -------------------------------------------------------------------------------- /pills/15-nix-search-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/15-nix-search-paths.md -------------------------------------------------------------------------------- /pills/16-nixpkgs-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/16-nixpkgs-parameters.md -------------------------------------------------------------------------------- /pills/17-nixpkgs-overriding-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/17-nixpkgs-overriding-packages.md -------------------------------------------------------------------------------- /pills/18-nix-store-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/18-nix-store-paths.md -------------------------------------------------------------------------------- /pills/19-fundamentals-of-stdenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/19-fundamentals-of-stdenv.md -------------------------------------------------------------------------------- /pills/20-basic-dependencies-and-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/20-basic-dependencies-and-hooks.md -------------------------------------------------------------------------------- /pills/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/pills/SUMMARY.md -------------------------------------------------------------------------------- /release.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/release.nix -------------------------------------------------------------------------------- /theme/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NixOS/nix-pills/HEAD/theme/highlight.js --------------------------------------------------------------------------------