nixos: prey module: fix option descriptions

This commit is contained in:
Tobias Geerinckx-Rice 2015-09-06 04:49:06 +02:00
parent 24048fa226
commit c90eb862fc

View File

@ -16,19 +16,28 @@ in {
default = false; default = false;
type = types.bool; type = types.bool;
description = '' description = ''
Enables http://preyproject.com/ bash client. Be sure to specify api and device keys. Enables the <link xlink:href="http://preyproject.com/" />
Once setup, cronjob will run evert 15 minutes and report status. shell client. Be sure to specify both API and device keys.
Once enabled, a <command>cron</command> job will run every 15
minutes to report status information.
''; '';
}; };
deviceKey = mkOption { deviceKey = mkOption {
type = types.string; type = types.string;
description = "Device Key obtained from https://panel.preyproject.com/devices (and clicking on the device)"; description = ''
<literal>Device key</literal> obtained by visiting
<link xlink:href="https://panel.preyproject.com/devices" />
and clicking on your device.
'';
}; };
apiKey = mkOption { apiKey = mkOption {
type = types.string; type = types.string;
description = "API key obtained from https://panel.preyproject.com/profile"; description = ''
<literal>API key</literal> obtained from
<link xlink:href="https://panel.preyproject.com/profile" />.
'';
}; };
}; };