1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 22:20:51 +00:00

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 {
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.";
};
};
};