nixos/uim: capitalize description

This commit is contained in:
Nikolay Amiantov
2015-03-05 20:49:45 +03:00
parent 0c5169b536
commit 264c6892f2
+3 -1
View File
@@ -7,14 +7,16 @@ let
in
{
options = {
uim = {
enable = mkOption {
type = types.bool;
default = false;
example = true;
description = "enable UIM input method";
description = "Enable UIM input method";
};
};
};
config = mkIf cfg.enable {