aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules/services/scheduling
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-11-19 14:14:19 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-11-19 14:25:16 +0100
commitdec09c2220c92a83604400aa10c3a31c77cd5602 (patch)
tree00f83b3a69e0eb6790e0cd4bfd4191e177c8d712 /nixos/modules/services/scheduling
parent16acdb45bd6f79b8bb49ff71fa66251538336598 (diff)
services.cron.enable: Remove misleading default
Elsewhere we set it to "mkDefault (allFiles != [])" to the default has no effect.
Diffstat (limited to 'nixos/modules/services/scheduling')
-rw-r--r--nixos/modules/services/scheduling/cron.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/scheduling/cron.nix b/nixos/modules/services/scheduling/cron.nix
index 1b5e83173e8..f5e132fd77d 100644
--- a/nixos/modules/services/scheduling/cron.nix
+++ b/nixos/modules/services/scheduling/cron.nix
@@ -39,7 +39,7 @@ in
enable = mkOption {
type = types.bool;
- default = true;
+ example = true;
description = "Whether to enable the Vixie cron daemon.";
};