1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +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 in
{ {
options = { options = {
uim = { uim = {
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
example = true; example = true;
description = "enable UIM input method"; description = "Enable UIM input method";
}; };
}; };
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {