diff options
author | Valentin Gagarin <valentin.gagarin@tweag.io> | 2023-05-11 15:29:03 +0200 |
---|---|---|
committer | Valentin Gagarin <valentin.gagarin@tweag.io> | 2023-05-11 15:29:03 +0200 |
commit | 2ef7f14e28258f2f203bbd03af49dd9c07078234 (patch) | |
tree | ad5dec57689d2d9fa761529f70e69a82d5774b29 /doc/manual | |
parent | 4539ab530ad23a8558512f784bd72c4cd0e72f13 (diff) |
do not indent markdown list
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/src/language/builtin-constants.md | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/doc/manual/src/language/builtin-constants.md b/doc/manual/src/language/builtin-constants.md index 78d066a82..3898bfd66 100644 --- a/doc/manual/src/language/builtin-constants.md +++ b/doc/manual/src/language/builtin-constants.md @@ -2,19 +2,19 @@ Here are the constants built into the Nix expression evaluator: - - `builtins`\ - The set `builtins` contains all the built-in functions and values. - You can use `builtins` to test for the availability of features in - the Nix installation, e.g., - - ```nix - if builtins ? getEnv then builtins.getEnv "PATH" else "" - ``` - - This allows a Nix expression to fall back gracefully on older Nix - installations that don’t have the desired built-in function. +- `builtins`\ + The set `builtins` contains all the built-in functions and values. + You can use `builtins` to test for the availability of features in + the Nix installation, e.g., + + ```nix + if builtins ? getEnv then builtins.getEnv "PATH" else "" + ``` + + This allows a Nix expression to fall back gracefully on older Nix + installations that don’t have the desired built-in function. - - [`builtins.currentSystem`]{#builtins-currentSystem}\ - The built-in value `currentSystem` evaluates to the Nix platform - identifier for the Nix installation on which the expression is being - evaluated, such as `"i686-linux"` or `"x86_64-darwin"`. +- [`builtins.currentSystem`]{#builtins-currentSystem}\ + The built-in value `currentSystem` evaluates to the Nix platform + identifier for the Nix installation on which the expression is being + evaluated, such as `"i686-linux"` or `"x86_64-darwin"`. |