aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2019-02-24 20:40:45 +0100
committerRobert Helgesson <robert@rycee.net>2019-03-06 18:52:54 +0100
commita09196c4ae18195a2a8d11f6179e4b2e44430e62 (patch)
tree9749a00a5b7bd74feea1310e64e3544ee98d85c5
parent1d8997633c685f8b432da812efe157fdd25bc49b (diff)
docs: add language attribute to program listings
-rw-r--r--doc/installation.xml4
-rw-r--r--modules/home-environment.nix4
-rw-r--r--modules/misc/nixpkgs.nix2
-rw-r--r--modules/programs/zsh.nix2
4 files changed, 6 insertions, 6 deletions
diff --git a/doc/installation.xml b/doc/installation.xml
index 835b69962f8..281f5067964 100644
--- a/doc/installation.xml
+++ b/doc/installation.xml
@@ -88,7 +88,7 @@
<para>
On NixOS you may need to log out and back in for the channel to become
available. On non-NixOS you may have to add
-<programlisting>
+<programlisting language="bash">
export NIX_PATH=$HOME/.nix-defexpr/channels${NIX_PATH:+:}$NIX_PATH
</programlisting>
to your shell (see
@@ -113,7 +113,7 @@ export NIX_PATH=$HOME/.nix-defexpr/channels${NIX_PATH:+:}$NIX_PATH
If you do not plan on having Home Manager manage your shell configuration
then you must source the
</para>
-<programlisting>
+<programlisting language="bash">
$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh
</programlisting>
<para>
diff --git a/modules/home-environment.nix b/modules/home-environment.nix
index 6e8c7cf9620..49b8727559c 100644
--- a/modules/home-environment.nix
+++ b/modules/home-environment.nix
@@ -163,7 +163,7 @@ in
Note, these variables may be set in any order so no session
variable may have a runtime dependency on another session
variable. In particular code like
- <programlisting>
+ <programlisting language="nix">
home.sessionVariables = {
FOO = "Hello";
BAR = "$FOO World!";
@@ -172,7 +172,7 @@ in
may not work as expected. If you need to reference another
session variable, then do so inside Nix instead. The above
example then becomes
- <programlisting>
+ <programlisting language="nix">
home.sessionVariables = {
FOO = "Hello";
BAR = "''${config.home.sessionVariables.FOO} World!";
diff --git a/modules/misc/nixpkgs.nix b/modules/misc/nixpkgs.nix
index 150cbe74093..b59e0d1ddaa 100644
--- a/modules/misc/nixpkgs.nix
+++ b/modules/misc/nixpkgs.nix
@@ -80,7 +80,7 @@ in
inside and outside Home Manager you can put it in a separate
file and include something like
- <programlisting>
+ <programlisting language="nix">
nixpkgs.config = import ./nixpkgs-config.nix;
xdg.configFile."nixpkgs/config.nix".source =
./nixpkgs-config.nix;
diff --git a/modules/programs/zsh.nix b/modules/programs/zsh.nix
index e7631309164..55ed4757d4b 100644
--- a/modules/programs/zsh.nix
+++ b/modules/programs/zsh.nix
@@ -174,7 +174,7 @@ in
default = true;
description = ''
Enable zsh completion. Don't forget to add
- <programlisting>
+ <programlisting language="nix">
environment.pathsToLink = [ "/share/zsh" ];
</programlisting>
to your system configuration to get completion for system packages (e.g. systemd).