From fb8bc4da2188d4ef597d7ff52abbb34ef0420251 Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Sat, 25 Apr 2015 14:29:13 +0200 Subject: [PATCH] nixos/etcd: fix enable type, so it could be enabled on multiple places --- nixos/modules/services/misc/etcd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/etcd.nix b/nixos/modules/services/misc/etcd.nix index 284361a04d9..26d2753879d 100644 --- a/nixos/modules/services/misc/etcd.nix +++ b/nixos/modules/services/misc/etcd.nix @@ -11,7 +11,7 @@ in { enable = mkOption { description = "Whether to enable etcd."; default = false; - type = types.uniq types.bool; + type = types.bool; }; name = mkOption {