about summary refs log tree commit diff
path: root/doc/using/configuration.chapter.md
diff options
context:
space:
mode:
authorfricklerhandwerk <fricklerhandwerk@users.noreply.github.com>2021-04-24 11:12:46 +0200
committerfricklerhandwerk <valentin@fricklerhandwerk.de>2021-04-25 10:31:02 +0200
commitc30fe2412047927ea761bdca20d42f7fc398745c (patch)
tree9fc8c2ffbfee6ce7b16882b47f84e64863cc38e7 /doc/using/configuration.chapter.md
parentd8b5ed331d62890285d3ce5a81d336269cdcb394 (diff)
docs/using: shellSession -> ShellSession
Co-authored-by: Jan Tojnar <jtojnar@gmail.com>
Diffstat (limited to 'doc/using/configuration.chapter.md')
-rw-r--r--doc/using/configuration.chapter.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/using/configuration.chapter.md b/doc/using/configuration.chapter.md
index e4d401368796f..932b24237c02e 100644
--- a/doc/using/configuration.chapter.md
+++ b/doc/using/configuration.chapter.md
@@ -42,7 +42,7 @@ There are two ways to try compiling a package which has been marked as broken.
 
 -   For allowing the build of a broken package once, you can use an environment variable for a single invocation of the nix tools:
 
-    ```shellSession
+    ```ShellSession
     $ export NIXPKGS_ALLOW_BROKEN=1
     ```
 
@@ -61,7 +61,7 @@ There are also two ways to try compiling a package which has been marked as unsu
 
 -   For allowing the build of an unsupported package once, you can use an environment variable for a single invocation of the nix tools:
 
-    ```shellSession
+    ```ShellSession
     $ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1
     ```
 
@@ -81,7 +81,7 @@ There are several ways to tweak how Nix handles a package which has been marked
 
 -   To temporarily allow all unfree packages, you can use an environment variable for a single invocation of the nix tools:
 
-    ```shellSession
+    ```ShellSession
     $ export NIXPKGS_ALLOW_UNFREE=1
     ```
 
@@ -134,7 +134,7 @@ There are several ways to tweak how Nix handles a package which has been marked
 
 -   To temporarily allow all insecure packages, you can use an environment variable for a single invocation of the nix tools:
 
-    ```shellSession
+    ```ShellSession
     $ export NIXPKGS_ALLOW_INSECURE=1
     ```
 
@@ -294,7 +294,7 @@ This provides us with some useful documentation for using our packages.  However
 
 For this to work fully, you must also have this script sourced when you are logged in. Try adding something like this to your `~/.profile` file:
 
-```shellSession
+```ShellSession
 #!/bin/sh
 if [ -d $HOME/.nix-profile/etc/profile.d ]; then
   for i in $HOME/.nix-profile/etc/profile.d/*.sh; do