From 8c93993e1bd65d4e661582e82a4848a5edf6b1ce Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 26 Apr 2012 12:21:45 +0000 Subject: [PATCH] modules/system/boot/luksroot.nix: fixed the descriptions of the options defined in this module svn path=/nixos/trunk/; revision=33927 --- modules/system/boot/luksroot.nix | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/modules/system/boot/luksroot.nix b/modules/system/boot/luksroot.nix index 9af2c0080a3b..9a2ef7860634 100644 --- a/modules/system/boot/luksroot.nix +++ b/modules/system/boot/luksroot.nix @@ -57,26 +57,19 @@ in name = mkOption { example = "luksroot"; type = types.string; - description = '' - Name of the interface. - ''; + description = "Named to be used for the generated device in /dev/mapper."; }; device = mkOption { example = "/dev/sda2"; type = types.string; - description = '' - IP address of the interface. Leave empty to configure the - interface using DHCP. - ''; + description = "Path of the underlying block device." }; preLVM = mkOption { default = true; type = types.bool; - description = '' - Whether the luksOpen will be attempted before LVM scan or after it. - ''; + description = "Whether the luksOpen will be attempted before LVM scan or after it."; }; }; };