From 08eba4c114871e5f138263aecf0824c90a32a703 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 1 Jun 2013 11:38:49 +0200 Subject: [PATCH] atd: don't enable at daemon by default The at daemon doesn't work on NixOS [1], so enabling it by default doesn't seem useful. I'd argue that it shouldn't be enabled by default even if it worked, actually. [1] http://lists.science.uu.nl/pipermail/nix-dev/2013-April/011048.html --- modules/services/scheduling/atd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/scheduling/atd.nix b/modules/services/scheduling/atd.nix index 68bc6f6466f..88bec2cb2f3 100644 --- a/modules/services/scheduling/atd.nix +++ b/modules/services/scheduling/atd.nix @@ -17,7 +17,7 @@ in options = { services.atd.enable = mkOption { - default = true; + default = false; description = '' Whether to enable the `at' daemon, a command scheduler. '';