about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorPablo Delgado Krämer <private@pablode.com>2018-12-17 19:11:40 +0100
committerPablo Delgado Krämer <private@pablode.com>2018-12-18 14:31:35 +0100
commit685c4f56083272594a53143c19c08906961c4b23 (patch)
treeb0d4fd3b718ea1664e252994228eb4b407fbe3d7 /nixos
parentee82749bdb68efbe30f07f6a77a4c98267b9b4b1 (diff)
downloadnixlib-685c4f56083272594a53143c19c08906961c4b23.tar
nixlib-685c4f56083272594a53143c19c08906961c4b23.tar.gz
nixlib-685c4f56083272594a53143c19c08906961c4b23.tar.bz2
nixlib-685c4f56083272594a53143c19c08906961c4b23.tar.lz
nixlib-685c4f56083272594a53143c19c08906961c4b23.tar.xz
nixlib-685c4f56083272594a53143c19c08906961c4b23.tar.zst
nixlib-685c4f56083272594a53143c19c08906961c4b23.zip
nixos/oh-my-zsh: fix wrong manual information
Manual still refers to 'programs.ohMyZsh' although it should be 'programs.zsh.ohMyZsh'.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/zsh/oh-my-zsh.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/programs/zsh/oh-my-zsh.xml b/nixos/modules/programs/zsh/oh-my-zsh.xml
index 5cf690c1a560..b26980daf067 100644
--- a/nixos/modules/programs/zsh/oh-my-zsh.xml
+++ b/nixos/modules/programs/zsh/oh-my-zsh.xml
@@ -19,7 +19,7 @@
    configuration format of <literal>oh-my-zsh</literal>.
 <programlisting>
 {
-  programs.ohMyZsh = {
+  programs.zsh.ohMyZsh = {
     enable = true;
     plugins = [ "git" "python" "man" ];
     theme = "agnoster";
@@ -51,7 +51,7 @@
    The module can do this as well:
 <programlisting>
 {
-  programs.ohMyZsh.custom = "~/path/to/custom/scripts";
+  programs.zsh.ohMyZsh.custom = "~/path/to/custom/scripts";
 }
 </programlisting>
   </para>
@@ -73,7 +73,7 @@
 <programlisting>
 { pkgs, ... }:
 {
-  programs.ohMyZsh.customPkgs = with pkgs; [
+  programs.zsh.ohMyZsh.customPkgs = with pkgs; [
     pkgs.nix-zsh-completions
     # and even more...
   ];
@@ -87,7 +87,7 @@
 
   <para>
    <emphasis>Please keep in mind that this is not compatible with
-   <literal>programs.ohMyZsh.custom</literal> as it requires an immutable store
+   <literal>programs.zsh.ohMyZsh.custom</literal> as it requires an immutable store
    path while <literal>custom</literal> shall remain mutable! An evaluation
    failure will be thrown if both <literal>custom</literal> and
    <literal>customPkgs</literal> are set.</emphasis>