diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-07-24 14:31:33 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-07-24 14:31:33 +0200 |
commit | da3d776cb91123a4d0528251b7ce909419ca0c7a (patch) | |
tree | e55735c90a32f1ce173ecc7eb7af68c002e29766 /doc/manual/src/package-management | |
parent | 4a79b3598f077983dd5717d7822ef8cb6a9fa967 (diff) |
Fix some dangling references
Diffstat (limited to 'doc/manual/src/package-management')
4 files changed, 12 insertions, 12 deletions
diff --git a/doc/manual/src/package-management/basic-package-mgmt.md b/doc/manual/src/package-management/basic-package-mgmt.md index d9c34afc6..8edaca6b0 100644 --- a/doc/manual/src/package-management/basic-package-mgmt.md +++ b/doc/manual/src/package-management/basic-package-mgmt.md @@ -24,11 +24,11 @@ or completely new ones.) You can manually download the latest version of Nixpkgs from <http://nixos.org/nixpkgs/download.html>. However, it’s much more -convenient to use the Nixpkgs *channel*, since it makes it easy to stay -up to date with new versions of Nixpkgs. (Channels are described in more -detail in [???](#sec-channels).) Nixpkgs is automatically added to your -list of “subscribed” channels when you install Nix. If this is not the -case for some reason, you can add it as follows: +convenient to use the Nixpkgs [*channel*](channels.md), since it makes +it easy to stay up to date with new versions of Nixpkgs. Nixpkgs is +automatically added to your list of “subscribed” channels when you +install Nix. If this is not the case for some reason, you can add it +as follows: $ nix-channel --add https://nixos.org/channels/nixpkgs-unstable $ nix-channel --update diff --git a/doc/manual/src/package-management/copy-closure.md b/doc/manual/src/package-management/copy-closure.md index d78b77e36..d3fac4d76 100644 --- a/doc/manual/src/package-management/copy-closure.md +++ b/doc/manual/src/package-management/copy-closure.md @@ -8,7 +8,7 @@ dependencies: $ nix-copy-closure --to alice@itchy.example.org $(type -p firefox) -See [???](#sec-nix-copy-closure) for details. +See the [manpage for `nix-copy-closure`](../command-ref/nix-copy-closure.md) for details. With `nix-store --export` and `nix-store --import` you can write the closure of a store diff --git a/doc/manual/src/package-management/package-management.md b/doc/manual/src/package-management/package-management.md index a2d078c16..bd26a09ab 100644 --- a/doc/manual/src/package-management/package-management.md +++ b/doc/manual/src/package-management/package-management.md @@ -1,4 +1,5 @@ -This chapter discusses how to do package management with Nix, i.e., how -to obtain, install, upgrade, and erase packages. This is the “user’s” -perspective of the Nix system — people who want to *create* packages -should consult [???](#chap-writing-nix-expressions). +This chapter discusses how to do package management with Nix, i.e., +how to obtain, install, upgrade, and erase packages. This is the +“user’s” perspective of the Nix system — people who want to *create* +packages should consult the [chapter on writing Nix +expressions](../expressions/writing-nix-expressions.md). diff --git a/doc/manual/src/package-management/profiles.md b/doc/manual/src/package-management/profiles.md index 1950c3121..f3786072d 100644 --- a/doc/manual/src/package-management/profiles.md +++ b/doc/manual/src/package-management/profiles.md @@ -104,8 +104,7 @@ These commands switch to the `my-profile` and default profile, respectively. If the profile doesn’t exist, it will be created automatically. You should be careful about storing a profile in another location than the `profiles` directory, since otherwise it might not be -used as a root of the garbage collector (see -[???](#sec-garbage-collection)). +used as a root of the [garbage collector](garbage-collection.md). All `nix-env` operations work on the profile pointed to by `~/.nix-profile`, but you can override this using the `--profile` option |