nixos/etcd: fix enable type, so it could be enabled on multiple places

This commit is contained in:
Jaka Hudoklin 2015-04-25 14:29:13 +02:00
parent 4e51a466bd
commit fb8bc4da21

View File

@ -11,7 +11,7 @@ in {
enable = mkOption {
description = "Whether to enable etcd.";
default = false;
type = types.uniq types.bool;
type = types.bool;
};
name = mkOption {