1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00

nixos/uim: capitalize description

This commit is contained in:
Nikolay Amiantov 2015-03-02 19:06:05 +03:00
parent 0c5169b536
commit 264c6892f2

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 {