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
+ .
+ '';
};
};