modules/system/boot/luksroot.nix: fixed the descriptions of the options defined in this module

svn path=/nixos/trunk/; revision=33927
This commit is contained in:
Peter Simons 2012-04-26 12:21:45 +00:00
parent 86ba0c52b3
commit 8c93993e1b

View File

@ -57,26 +57,19 @@ in
name = mkOption { name = mkOption {
example = "luksroot"; example = "luksroot";
type = types.string; type = types.string;
description = '' description = "Named to be used for the generated device in /dev/mapper.";
Name of the interface.
'';
}; };
device = mkOption { device = mkOption {
example = "/dev/sda2"; example = "/dev/sda2";
type = types.string; type = types.string;
description = '' description = "Path of the underlying block device."
IP address of the interface. Leave empty to configure the
interface using DHCP.
'';
}; };
preLVM = mkOption { preLVM = mkOption {
default = true; default = true;
type = types.bool; type = types.bool;
description = '' description = "Whether the luksOpen will be attempted before LVM scan or after it.";
Whether the luksOpen will be attempted before LVM scan or after it.
'';
}; };
}; };
}; };