summary refs log tree commit diff
path: root/nixos/modules/services/scheduling/chronos.nix
diff options
context:
space:
mode:
authorrushmorem <rushmore@webenchanter.com>2015-02-19 12:31:12 +0200
committerrushmorem <rushmore@webenchanter.com>2015-02-19 12:31:12 +0200
commita661802d29c7326d7407160eed65899726806036 (patch)
treef1d488dfd2fbdaeb141b62036fc9fb7dc9ae8307 /nixos/modules/services/scheduling/chronos.nix
parentb34d63e722981bb81a88659e3d5f978223d17a9d (diff)
downloadnixpkgs-a661802d29c7326d7407160eed65899726806036.tar
nixpkgs-a661802d29c7326d7407160eed65899726806036.tar.gz
nixpkgs-a661802d29c7326d7407160eed65899726806036.tar.bz2
nixpkgs-a661802d29c7326d7407160eed65899726806036.tar.lz
nixpkgs-a661802d29c7326d7407160eed65899726806036.tar.xz
nixpkgs-a661802d29c7326d7407160eed65899726806036.tar.zst
nixpkgs-a661802d29c7326d7407160eed65899726806036.zip
Update chronos default port
Update chronos default port to match the one documented on
their website (http://airbnb.github.io/chronos). The one in
their repo (the current one) clashes with the marathon documented
one.
Diffstat (limited to 'nixos/modules/services/scheduling/chronos.nix')
-rw-r--r--nixos/modules/services/scheduling/chronos.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/scheduling/chronos.nix b/nixos/modules/services/scheduling/chronos.nix
index 277cdd63280..f36b886a744 100644
--- a/nixos/modules/services/scheduling/chronos.nix
+++ b/nixos/modules/services/scheduling/chronos.nix
@@ -18,7 +18,7 @@ in {
 
     httpPort = mkOption {
       description = "Chronos listening port";
-      default = 8080;
+      default = 4400;
       type = types.int;
     };