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
This commit is contained in:
Peter Simons 2013-06-01 11:38:49 +02:00
parent 3bb97667b8
commit 08eba4c114

View file

@ -17,7 +17,7 @@ in
options = {
services.atd.enable = mkOption {
default = true;
default = false;
description = ''
Whether to enable the `at' daemon, a command scheduler.
'';