nixos/taskserver: Link to manual within .enable

With <olink/> support in place, we can now reference the Taskserver
section within the NixOS manual, so that users reading the manpage of
configuration.nix(5) won't miss this information.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2016-04-11 18:45:09 +02:00
parent 1d77dcaed3
commit 7875885fb2
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -147,11 +147,20 @@ let
withMeta = meta: defs: mkMerge [ defs { inherit meta; } ];
in {
options = {
services.taskserver = {
enable = mkOption {
type = types.bool;
default = false;
example = true;
description = ''
Whether to enable the Taskwarrior server.
enable = mkEnableOption "the Taskwarrior server";
More instructions about NixOS in conjuction with Taskserver can be
found in the NixOS manual at
<olink targetdoc="manual" targetptr="module-taskserver"/>.
'';
};
user = mkOption {
type = types.str;