From c90eb862fcbb209fc9dd70b7821d5ca878d19b89 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 6 Sep 2015 04:49:06 +0200 Subject: [PATCH] nixos: prey module: fix option descriptions --- nixos/modules/security/prey.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/nixos/modules/security/prey.nix b/nixos/modules/security/prey.nix index e29fa5395a1..d7d438103a2 100644 --- a/nixos/modules/security/prey.nix +++ b/nixos/modules/security/prey.nix @@ -16,19 +16,28 @@ in { 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 + shell client. Be sure to specify both API and device keys. + Once enabled, a cron 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 = '' + Device key obtained by visiting + + and clicking on your device. + ''; }; apiKey = mkOption { type = types.string; - description = "API key obtained from https://panel.preyproject.com/profile"; + description = '' + API key obtained from + . + ''; }; };