Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/manual/source/command-ref/nix-shell.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

This man page describes the command `nix-shell`, which is distinct from `nix
shell`. For documentation on the latter, run `nix shell --help` or see `man
nix3-shell`.
nix3-env-shell`.

# Description

Expand Down
2 changes: 1 addition & 1 deletion src/libstore/include/nix/store/globals.hh
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public:
-->
For instance, in Nixpkgs, if the attribute `enableParallelBuilding` for the `mkDerivation` build helper is set to `true`, it passes the `-j${NIX_BUILD_CORES}` flag to GNU Make.

If set to `0`, nix will detect the number of CPU cores and pass this number via NIX_BUILD_CORES.
If set to `0`, nix will detect the number of CPU cores and pass this number via `NIX_BUILD_CORES`.

> **Note**
>
Expand Down
2 changes: 1 addition & 1 deletion src/nix/unix/daemon.cc
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ struct AuthorizationSettings : Config
{"*"},
"allowed-users",
R"(
A list user names, separated by whitespace.
A list of user names, separated by whitespace.
These users are allowed to connect to the Nix daemon.

You can specify groups by prefixing names with `@`.
Expand Down
Loading