summary refs log tree commit diff
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom@yandex.ru>2013-09-02 03:29:17 -0700
committerEvgeny Egorochkin <phreedom@yandex.ru>2013-09-02 03:29:17 -0700
commite0dcfac2e2bf0ffb07f445654ff8bb1387ed96e9 (patch)
tree850598fd0744dd5250ac136ed3c9ddde33c2e926
parente06cd403b8b713b205c103d4699a48dc93d29c6f (diff)
parenta7a981879535afc67e45328fc1a0d3eab7914e28 (diff)
downloadnixlib-e0dcfac2e2bf0ffb07f445654ff8bb1387ed96e9.tar
nixlib-e0dcfac2e2bf0ffb07f445654ff8bb1387ed96e9.tar.gz
nixlib-e0dcfac2e2bf0ffb07f445654ff8bb1387ed96e9.tar.bz2
nixlib-e0dcfac2e2bf0ffb07f445654ff8bb1387ed96e9.tar.lz
nixlib-e0dcfac2e2bf0ffb07f445654ff8bb1387ed96e9.tar.xz
nixlib-e0dcfac2e2bf0ffb07f445654ff8bb1387ed96e9.tar.zst
nixlib-e0dcfac2e2bf0ffb07f445654ff8bb1387ed96e9.zip
Merge pull request #240 from ivan/typo-fix-2
Fix typo and incorrect package name
-rw-r--r--doc/manual/configuration.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/configuration.xml b/doc/manual/configuration.xml
index fdd8ce80778c..0a3cb5c8fce3 100644
--- a/doc/manual/configuration.xml
+++ b/doc/manual/configuration.xml
@@ -312,7 +312,7 @@ manpage or the Nix manual.</para>
 <para>NixOS supports both declarative and imperative styles of user
 management.  In the declarative style, users are specified in
 <filename>configuration.nix</filename>.  For instance, the following
-states that a user accound named <literal>alice</literal> shall exist:
+states that a user account named <literal>alice</literal> shall exist:
 
 <programlisting>
 users.extraUsers.alice =
@@ -746,7 +746,7 @@ networking.localCommands =
 the option <option>boot.kernelPackages</option>.  For instance, this
 selects the Linux 3.10 kernel:
 <programlisting>
-boot.kernelPackages = pkgs.kernelPackages_3_10;
+boot.kernelPackages = pkgs.linuxPackages_3_10;
 </programlisting>
 Note that this not only replaces the kernel, but also packages that
 are specific to the kernel version, such as the NVIDIA video drivers.