aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2022-03-07Move rl-next.md to rl-2.7.mdEelco Dolstra
2022-03-07Tweak release notesEelco Dolstra
2022-03-07Merge branch 'cli-suggestions' of https://github.com/thufschmitt/nixEelco Dolstra
2022-03-07Tweak release notesEelco Dolstra
2022-03-07Add a release-notes entry for the cli suggestionsregnat
2022-03-03enable LTO in optimized buildspennae
gives 2-5% performance improvement across a board of tests. LTO is broken when using clang; some libs link fine while others crash the linker with a segfault in the llvm linker plugin. 🙁
2022-02-26doc: Add removal of darwin-store LaunchDaemontoonn
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-25doc: Drop nix-darwin service from macOS uninstalltoonn
2022-02-25doc: Add macOS uninstall note about /nixtoonn
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-24Merge pull request #6089 from edolstra/dot-defaultEelco Dolstra
Replace defaultBla.$system with bla.$system.default
2022-02-24Anchor with prefixGuillaume Desforges
2022-02-23Anchor link for builtin functions in HTML docGuillaume Desforges
2022-02-23Add html make targetGuillaume Desforges
2022-02-23Precise 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-22doc: Add detailed uninstall section for macOStoonn
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-22Update release notesEelco Dolstra
2022-02-18Merge pull request #6114 from Radvendii/welcomeTextEelco Dolstra
add release notes for welcomeText
2022-02-17add release notes for welcomeTextTaeer Bar-Yam
2022-02-15manual: fix formatting for options with "machine-specific" defaultsRahul Butani
2022-01-28Merge branch 'master' into bundler_drvtomberek
2022-01-25nix store ping: Report Nix daemon versionEelco Dolstra
Fixes #5952.
2022-01-25bundler: notes and doc update to include bundlers repoTom Bereknyei
2022-01-25Move rl-next.md to rl-2.5.mdEelco Dolstra
2022-01-24Merge pull request #5960 from zombiezen/patch-1Eelco Dolstra
Correct `NIX_BUILD_PATH` default description
2022-01-24Tweak release notesEelco Dolstra
2022-01-21Correct NIX_BUILD_PATH default descriptionRoss Light
Source: https://github.com/NixOS/nix/blob/067076287bf601f8fa2ffe4feff3057b96fa5be8/src/nix-build/nix-build.cc#L362-L381
2022-01-21Adding docs regarding the docker image from masterRok Garbas
2022-01-18release-notes: document commit-lockfile-summary optionlincoln auster [they/them]
This documents 3023c7700.
2022-01-18Add command 'nix store copy-log'Eelco Dolstra
Fixes #5222.
2022-01-18Merge pull request #5720 from tomberek/flake_searchThéophane Hufschmitt
flakes: search up to git or filesystem boundary
2022-01-14Apply suggestions from code reviewtomberek
Co-authored-by: Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com>
2022-01-13TweakEelco Dolstra
2022-01-13Merge branch 'patch-1' of https://github.com/TheodorRene/nixEelco Dolstra
2022-01-12Release Notes 2.4: add `--indirect` no-op changeProfpatsch
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-11Add link to explanation when introducing a new operatorTheodor 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-03add zipAttrsWith primoppennae
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-29Add ability to toggle show-trace from within the replAlexander Bantyev
2021-12-23Merge branch 'master' into flake_searchtomberek
2021-12-21Update release notesEelco Dolstra
2021-12-16Fix docker instructionsEelco Dolstra
2021-12-15List aarch64 as supported macOS hardwarejesse
Resolves #5767
2021-12-14Merge pull request #5702 from baloo/baloo/hide-non-reproducible-settingsThéophane Hufschmitt
reproducibility: hide non-reproducible settings from manual
2021-12-13rl-2.5.md: Set dateEelco Dolstra
2021-12-13Move rl-next.md to rl-2.5.mdEelco Dolstra
2021-12-13Add release notes entry for #5149Eelco Dolstra
2021-12-10doc: Fix command for distributed buildsJanne Heß
We also need to build impurely or the <nixpkgs> lookup will not work.
2021-12-09Fix link to nixos channelAmon StopinĆĄek
The old link returned 404 errror.
2021-12-07Merge pull request #5730 from abathur/darwin_document_fstab_settingsEelco Dolstra
document some darwin mount settings
2021-12-06nix repl: add :logAlexander Bantyev
Add a :log command that shows logs for a derivation. Closes https://github.com/NixOS/nix/issues/3504 Co-authored-by: Taeer Bar-Yam <taeer@bar-yam.me>
2021-12-04document some darwin mount settingsTravis A. Everett