summary refs log tree commit diff
path: root/nixos/modules/services/databases
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-15 18:10:26 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-15 18:10:26 +0200
commitc738b309eea83669bbd590f7293db5d725233193 (patch)
treeda534781a95fa089b57bf53514bea1998be114e8 /nixos/modules/services/databases
parent9366af1b94ed42b5e92a776b1ddc4ecd46e69ad1 (diff)
downloadnixpkgs-c738b309eea83669bbd590f7293db5d725233193.tar
nixpkgs-c738b309eea83669bbd590f7293db5d725233193.tar.gz
nixpkgs-c738b309eea83669bbd590f7293db5d725233193.tar.bz2
nixpkgs-c738b309eea83669bbd590f7293db5d725233193.tar.lz
nixpkgs-c738b309eea83669bbd590f7293db5d725233193.tar.xz
nixpkgs-c738b309eea83669bbd590f7293db5d725233193.tar.zst
nixpkgs-c738b309eea83669bbd590f7293db5d725233193.zip
types.uniq types.bool -> types.bool
Diffstat (limited to 'nixos/modules/services/databases')
-rw-r--r--nixos/modules/services/databases/influxdb.nix2
-rw-r--r--nixos/modules/services/databases/neo4j.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/databases/influxdb.nix b/nixos/modules/services/databases/influxdb.nix
index b57ccebae16..08963f7aab7 100644
--- a/nixos/modules/services/databases/influxdb.nix
+++ b/nixos/modules/services/databases/influxdb.nix
@@ -55,7 +55,7 @@ in
       enable = mkOption {
         default = false;
         description = "Whether to enable the influxdb server";
-        type = types.uniq types.bool;
+        type = types.bool;
       };
 
       package = mkOption {
diff --git a/nixos/modules/services/databases/neo4j.nix b/nixos/modules/services/databases/neo4j.nix
index 575034c93ab..3cf22db7da2 100644
--- a/nixos/modules/services/databases/neo4j.nix
+++ b/nixos/modules/services/databases/neo4j.nix
@@ -43,7 +43,7 @@ in {
     enable = mkOption {
       description = "Whether to enable neo4j.";
       default = false;
-      type = types.uniq types.bool;
+      type = types.bool;
     };
 
     package = mkOption {