Merge pull request #7548 from offlinehacker/etcdfix

nixos/etcd: fix enable type, so it could be enabled on multiple places
This commit is contained in:
Domen Kožar 2015-04-25 22:14:55 +02:00
commit ff12c3274a

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 {