aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/security/prey.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/security/prey.nix')
-rw-r--r--nixpkgs/nixos/modules/security/prey.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/nixpkgs/nixos/modules/security/prey.nix b/nixpkgs/nixos/modules/security/prey.nix
new file mode 100644
index 00000000000..b899ccb6c3e
--- /dev/null
+++ b/nixpkgs/nixos/modules/security/prey.nix
@@ -0,0 +1,51 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.prey;
+ myPrey = pkgs.prey-bash-client.override {
+ apiKey = cfg.apiKey;
+ deviceKey = cfg.deviceKey;
+ };
+in {
+ options = {
+
+ services.prey = {
+ enable = mkOption {
+ default = false;
+ type = types.bool;
+ description = ''
+ 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.str;
+ 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.str;
+ description = ''
+ <literal>API key</literal> obtained from
+ <link xlink:href="https://panel.preyproject.com/profile" />.
+ '';
+ };
+ };
+
+ };
+
+ config = mkIf cfg.enable {
+ environment.systemPackages = [ myPrey ];
+ services.cron.systemCronJobs = [ "*/15 * * * * root ${myPrey}/prey.sh" ];
+ };
+
+}