nixos: add some missing '.' in option descriptions

This commit is contained in:
Bjørn Forsman
2014-06-24 21:25:11 +02:00
parent f78ce19d8c
commit 4def9a762f
4 changed files with 19 additions and 19 deletions
+4 -4
View File
@@ -16,28 +16,28 @@ let
enable = mkOption {
default = false;
type = types.bool;
description = "The block device is backed by an encrypted one, adds this device as a initrd luks entry";
description = "The block device is backed by an encrypted one, adds this device as a initrd luks entry.";
};
blkDev = mkOption {
default = null;
example = "/dev/sda1";
type = types.uniq (types.nullOr types.string);
description = "Location of the backing encrypted device";
description = "Location of the backing encrypted device.";
};
label = mkOption {
default = null;
example = "rootfs";
type = types.uniq (types.nullOr types.string);
description = "Label of the backing encrypted device";
description = "Label of the backing encrypted device.";
};
keyFile = mkOption {
default = null;
example = "/root/.swapkey";
type = types.uniq (types.nullOr types.string);
description = "File system location of keyfile";
description = "File system location of keyfile.";
};
};
};