diff options
author | Valentin Gagarin <valentin.gagarin@tweag.io> | 2023-04-26 11:01:12 +0200 |
---|---|---|
committer | Valentin Gagarin <valentin.gagarin@tweag.io> | 2023-04-26 15:39:24 +0200 |
commit | 7770d82240ffecabf0022aee21e2ba62b6d11876 (patch) | |
tree | 45b2ec959461902464fec3d29d4eb04e196c3709 /doc/manual/src/command-ref | |
parent | 9d386fe2ee79d5fadea3c29559687bd0df4c8e5b (diff) |
fix typos and wording
Diffstat (limited to 'doc/manual/src/command-ref')
-rw-r--r-- | doc/manual/src/command-ref/files/user-profiles.md | 7 | ||||
-rw-r--r-- | doc/manual/src/command-ref/nix-channel.md | 1 |
2 files changed, 3 insertions, 5 deletions
diff --git a/doc/manual/src/command-ref/files/user-profiles.md b/doc/manual/src/command-ref/files/user-profiles.md index 034743e7f..9a9ec627b 100644 --- a/doc/manual/src/command-ref/files/user-profiles.md +++ b/doc/manual/src/command-ref/files/user-profiles.md @@ -14,8 +14,7 @@ A profile is a directory of symlinks to files in the Nix store. > `nix profile` is experimental. > Once you have used `nix profile` you can no longer use `nix-env` without first deleting `$XDG_STATE_HOME/nix/profiles/profile` -Once you installed a package with `nix profile`, you get the following -error message when using `nix-env`: +Once you installed a package with `nix profile`, you get the following error message when using `nix-env`: ```console $ nix-env -f '<nixpkgs>' -iA 'hello' @@ -27,7 +26,7 @@ To migrate back to `nix-env` you can delete your current profile: > **Warning** > -> This will delete packages that have been installed before, so you may want to back this information before running the command. +> This will delete packages that have been installed before, so you may want to back up this information before running the command. ```console $ rm -rf "${XDG_STATE_HOME-$HOME/.local/state}/nix/profiles/profile" @@ -207,7 +206,7 @@ Used by [`nix-env`]. Here is an example of how this file might look like after i Each element in this list corresponds to an installed package. It incorporates some attributes of the original package derivation, including `meta`, `name`, `out`, `outPath`, `outputs`, `system`. -This is used by Nix for querying and updating the package. +This information is used by Nix for querying and updating the package. ### `manifest.json` diff --git a/doc/manual/src/command-ref/nix-channel.md b/doc/manual/src/command-ref/nix-channel.md index 9f7246661..72d3e422b 100644 --- a/doc/manual/src/command-ref/nix-channel.md +++ b/doc/manual/src/command-ref/nix-channel.md @@ -52,7 +52,6 @@ The list of subscribed channels is stored in `~/.nix-channels`. {{#include ./env-common.md}} - # Examples To subscribe to the Nixpkgs channel and install the GNU Hello package: |