summary refs log tree commit diff
path: root/nixos/modules/services/scheduling
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/scheduling
parent9366af1b94ed42b5e92a776b1ddc4ecd46e69ad1 (diff)
downloadnixlib-c738b309eea83669bbd590f7293db5d725233193.tar
nixlib-c738b309eea83669bbd590f7293db5d725233193.tar.gz
nixlib-c738b309eea83669bbd590f7293db5d725233193.tar.bz2
nixlib-c738b309eea83669bbd590f7293db5d725233193.tar.lz
nixlib-c738b309eea83669bbd590f7293db5d725233193.tar.xz
nixlib-c738b309eea83669bbd590f7293db5d725233193.tar.zst
nixlib-c738b309eea83669bbd590f7293db5d725233193.zip
types.uniq types.bool -> types.bool
Diffstat (limited to 'nixos/modules/services/scheduling')
-rw-r--r--nixos/modules/services/scheduling/chronos.nix2
-rw-r--r--nixos/modules/services/scheduling/marathon.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/scheduling/chronos.nix b/nixos/modules/services/scheduling/chronos.nix
index f36b886a744b..db1f0f5f00c9 100644
--- a/nixos/modules/services/scheduling/chronos.nix
+++ b/nixos/modules/services/scheduling/chronos.nix
@@ -13,7 +13,7 @@ in {
     enable = mkOption {
       description = "Whether to enable graphite web frontend.";
       default = false;
-      type = types.uniq types.bool;
+      type = types.bool;
     };
 
     httpPort = mkOption {
diff --git a/nixos/modules/services/scheduling/marathon.nix b/nixos/modules/services/scheduling/marathon.nix
index b9f4a808b0ce..4e837c62dc11 100644
--- a/nixos/modules/services/scheduling/marathon.nix
+++ b/nixos/modules/services/scheduling/marathon.nix
@@ -12,7 +12,7 @@ in {
 
   options.services.marathon = {
     enable = mkOption {
-      type = types.uniq types.bool;
+      type = types.bool;
       default = false;
       description = ''
 	Whether to enable the marathon mesos framework.