Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-25 | Only provide builtin.{getFlake,fetchClosure} is the corresponding ↵ | Eelco Dolstra | |
experimental feature is enabled This allows writing fallback code like if builtins ? fetchClosure then builtins.fetchClose { ... } else builtins.storePath ... | |||
2022-03-24 | Document fetchClosure | Eelco Dolstra | |
2022-03-24 | Rename 'nix store make-content-addressable' to 'nix store ↵ | Eelco Dolstra | |
make-content-addressed' | |||
2022-03-23 | Merge pull request #6144 from toonn/doc-macos-uninstall | Domen Kožar | |
doc: Add detailed uninstall section for macOS | |||
2022-03-17 | Merge pull request #6270 from Artturin/stdineval | Théophane Hufschmitt | |
nix: allow using --file - to read from stdin | |||
2022-03-16 | nix: allow using --file - to read from stdin | Artturin | |
2022-03-16 | distributed-builds.md: fixing typo of the most minor sort | Joachim Breitner | |
2022-03-07 | Move rl-next.md to rl-2.7.md | Eelco Dolstra | |
2022-03-07 | Tweak release notes | Eelco Dolstra | |
2022-03-07 | Merge branch 'cli-suggestions' of https://github.com/thufschmitt/nix | Eelco Dolstra | |
2022-03-07 | Tweak release notes | Eelco Dolstra | |
2022-03-07 | Add a release-notes entry for the cli suggestions | regnat | |
2022-02-26 | doc: Add removal of darwin-store LaunchDaemon | toonn | |
The uninstall instructions used to accidentally remove the nix-darwin LaunchDaemon, this was dropped. However, the original intent was to remove the Store volume mounting LaunchDaemon. | |||
2022-02-25 | doc: Drop nix-darwin service from macOS uninstall | toonn | |
2022-02-25 | doc: Add macOS uninstall note about /nix | toonn | |
Clarify that `/nix` being present after the uninstall is normal and it will only disappear after a reboot. Co-authored-by: Travis A. Everett <travis.a.everett@gmail.com> | |||
2022-02-24 | Merge pull request #6089 from edolstra/dot-default | Eelco Dolstra | |
Replace defaultBla.$system with bla.$system.default | |||
2022-02-24 | Anchor with prefix | Guillaume Desforges | |
2022-02-23 | Anchor link for builtin functions in HTML doc | Guillaume Desforges | |
2022-02-23 | Add html make target | Guillaume Desforges | |
2022-02-23 | Precise the doc for `--include-outputs` | Théophane Hufschmitt | |
Make it explicit that it only includes the existing outputs and not the ones that haven’t been realised | |||
2022-02-22 | doc: Add detailed uninstall section for macOS | toonn | |
The multi-user installation on macOS, which is now the only option, has gotten complicated enough that it discourages some users from checking Nix out for fear of being left with a "dirty" system. Detailed uninstallation instructions should make this less of an issue. | |||
2022-02-22 | Update release notes | Eelco Dolstra | |
2022-02-18 | Merge pull request #6114 from Radvendii/welcomeText | Eelco Dolstra | |
add release notes for welcomeText | |||
2022-02-17 | add release notes for welcomeText | Taeer Bar-Yam | |
2022-02-15 | manual: fix formatting for options with "machine-specific" defaults | Rahul Butani | |
2022-01-28 | Merge branch 'master' into bundler_drv | tomberek | |
2022-01-25 | nix store ping: Report Nix daemon version | Eelco Dolstra | |
Fixes #5952. | |||
2022-01-25 | bundler: notes and doc update to include bundlers repo | Tom Bereknyei | |
2022-01-25 | Move rl-next.md to rl-2.5.md | Eelco Dolstra | |
2022-01-24 | Merge pull request #5960 from zombiezen/patch-1 | Eelco Dolstra | |
Correct `NIX_BUILD_PATH` default description | |||
2022-01-24 | Tweak release notes | Eelco Dolstra | |
2022-01-21 | Correct NIX_BUILD_PATH default description | Ross Light | |
Source: https://github.com/NixOS/nix/blob/067076287bf601f8fa2ffe4feff3057b96fa5be8/src/nix-build/nix-build.cc#L362-L381 | |||
2022-01-21 | Adding docs regarding the docker image from master | Rok Garbas | |
2022-01-18 | release-notes: document commit-lockfile-summary option | lincoln auster [they/them] | |
This documents 3023c7700. | |||
2022-01-18 | Add command 'nix store copy-log' | Eelco Dolstra | |
Fixes #5222. | |||
2022-01-18 | Merge pull request #5720 from tomberek/flake_search | Théophane Hufschmitt | |
flakes: search up to git or filesystem boundary | |||
2022-01-14 | Apply suggestions from code review | tomberek | |
Co-authored-by: Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | |||
2022-01-13 | Tweak | Eelco Dolstra | |
2022-01-13 | Merge branch 'patch-1' of https://github.com/TheodorRene/nix | Eelco Dolstra | |
2022-01-12 | Release Notes 2.4: add `--indirect` no-op change | Profpatsch | |
Since https://github.com/NixOS/nix/commit/00d25e84577659ccf0bc360c61c47b6cd25d1c26 which was first included in nix 2.4. It is a backwards-compatible change since the flag will just be ignored. | |||
2022-01-11 | Add link to explanation when introducing a new operator | Theodor René Carlsen | |
The logical implication operator is included in this section but never explained. It might stump new readers with a pretty uncommon operator, and it's never referenced explicitly. | |||
2022-01-03 | add zipAttrsWith primop | pennae | |
nixpkgs can save a good bit of eval memory with this primop. zipAttrsWith is used quite a bit around nixpkgs (eg in the form of recursiveUpdate), but the most costly application for this primop is in the module system. it improves the implementation of zipAttrsWith from nixpkgs by not checking an attribute multiple times if it occurs more than once in the input list, allocates less values and set elements, and just avoids many a temporary object in general. nixpkgs has a more generic version of this operation, zipAttrsWithNames, but this version is only used once so isn't suitable for being the base of a new primop. if it were to be used more we should add a second primop instead. | |||
2021-12-29 | Add ability to toggle show-trace from within the repl | Alexander Bantyev | |
2021-12-23 | Merge branch 'master' into flake_search | tomberek | |
2021-12-21 | Update release notes | Eelco Dolstra | |
2021-12-16 | Fix docker instructions | Eelco Dolstra | |
2021-12-15 | List aarch64 as supported macOS hardware | jesse | |
Resolves #5767 | |||
2021-12-14 | Merge pull request #5702 from baloo/baloo/hide-non-reproducible-settings | Théophane Hufschmitt | |
reproducibility: hide non-reproducible settings from manual | |||
2021-12-13 | rl-2.5.md: Set date | Eelco Dolstra | |
2021-12-13 | Move rl-next.md to rl-2.5.md | Eelco Dolstra | |