about summary refs log tree commit diff
path: root/doc
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
parentd8b5ed331d62890285d3ce5a81d336269cdcb394 (diff)
docs/using: shellSession -> ShellSession
Co-authored-by: Jan Tojnar <jtojnar@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/using/configuration.chapter.md10
-rw-r--r--doc/using/overlays.chapter.md2
2 files changed, 6 insertions, 6 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
diff --git a/doc/using/overlays.chapter.md b/doc/using/overlays.chapter.md
index 935583a91e249..21efe467b8473 100644
--- a/doc/using/overlays.chapter.md
+++ b/doc/using/overlays.chapter.md
@@ -111,7 +111,7 @@ self: super:
 
 This overlay uses Intel's MKL library for both BLAS and LAPACK interfaces. Note that the same can be accomplished at runtime using `LD_LIBRARY_PATH` of `libblas.so.3` and `liblapack.so.3`. For instance:
 
-```shellSession
+```ShellSession
 $ LD_LIBRARY_PATH=$(nix-build -A mkl)/lib:$LD_LIBRARY_PATH nix-shell -p octave --run octave
 ```