nixos: prey module: fix option descriptions

Changed files
+13 -4
nixos
modules
security
+13 -4
nixos/modules/security/prey.nix
···
default = false;
type = types.bool;
description = ''
-
Enables http://preyproject.com/ bash client. Be sure to specify api and device keys.
-
Once setup, cronjob will run evert 15 minutes and report status.
+
Enables the <link xlink:href="http://preyproject.com/" />
+
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 {
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 {
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" />.
+
'';
};
};