add colons to connect listings with descriptions

This commit is contained in:
Valentin Gagarin 2023-04-26 10:57:41 +02:00
parent a1c996dc7e
commit 9d386fe2ee
3 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,6 @@
# Channels # Channels
A directory containing symlinks to Nix channels, managed by [`nix-channel`]. A directory containing symlinks to Nix channels, managed by [`nix-channel`]:
- `$XDG_STATE_HOME/nix/profiles/channels` for regular users - `$XDG_STATE_HOME/nix/profiles/channels` for regular users
- `$NIX_STATE_DIR/profiles/per-user/root/channels` for `root` - `$NIX_STATE_DIR/profiles/per-user/root/channels` for `root`

View file

@ -1,6 +1,6 @@
# Default Nix expression # Default Nix expression
The source for the default [Nix expressions](@docroot@/language/index.md) used by [`nix-env`]. The source for the default [Nix expressions](@docroot@/language/index.md) used by [`nix-env`]:
- `~/.nix-defexpr` - `~/.nix-defexpr`
- `$XDG_STATE_HOME/nix/defexpr` if [`use-xdg-base-directories`] is set to `true`. - `$XDG_STATE_HOME/nix/defexpr` if [`use-xdg-base-directories`] is set to `true`.
@ -35,7 +35,7 @@ This makes all subscribed channels available as attributes in the default expres
## User channel link ## User channel link
A symlink that ensures that [`nix-env`] can find your channels. A symlink that ensures that [`nix-env`] can find your channels:
- `~/.nix-defexpr/channels` - `~/.nix-defexpr/channels`
- `$XDG_STATE_HOME/defexpr/channels` if [`use-xdg-base-directories`] is set to `true`. - `$XDG_STATE_HOME/defexpr/channels` if [`use-xdg-base-directories`] is set to `true`.

View file

@ -1,6 +1,6 @@
# User profiles # User profiles
A directory that contains links to user profiles managed by [`nix-env`] and [`nix profile`]. A directory that contains links to user profiles managed by [`nix-env`] and [`nix profile`]:
- `$XDG_STATE_HOME/nix/profiles` for regular users - `$XDG_STATE_HOME/nix/profiles` for regular users
- `$NIX_STATE_DIR/profiles/per-user/root` if the user is `root` - `$NIX_STATE_DIR/profiles/per-user/root` if the user is `root`
@ -84,7 +84,7 @@ It is different between [`nix-env`] and [`nix profile`].
### `manifest.nix` ### `manifest.nix`
Used by [`nix-env`]. This is an example of how this file might look like after installing `hello` from nixpkgs. Used by [`nix-env`]. Here is an example of how this file might look like after installing `hello` from Nixpkgs:
```nix ```nix
[{ [{
@ -211,7 +211,7 @@ This is used by Nix for querying and updating the package.
### `manifest.json` ### `manifest.json`
Used by [`nix profile`]. This is an example of what the file might look like after installing `zoom-us` from nixpkgs: Used by [`nix profile`]. Here is an example of what the file might look like after installing `zoom-us` from Nixpkgs:
```json ```json
{ {
@ -255,7 +255,7 @@ has the following fields:
## User profile link ## User profile link
A symbolic link to the user's current profile. A symbolic link to the user's current profile:
- `~/.nix-profile` - `~/.nix-profile`
- `$XDG_STATE_HOME/nix/profile` if [`use-xdg-base-directories`] is set to `true`. - `$XDG_STATE_HOME/nix/profile` if [`use-xdg-base-directories`] is set to `true`.