summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/incron.nix
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2018-08-27 21:31:55 +0000
committerAaron Andersen <aaron@fosslib.net>2018-08-27 21:31:55 +0000
commitb77f38c3cd715f59447f4e318fe38abd4f3fee57 (patch)
treece18a018c7cbd0c292a3dca678528576af4189b7 /nixos/modules/services/monitoring/incron.nix
parentbd50320cb1fe6e16294d93d7d051ecd4111e3a16 (diff)
downloadnixpkgs-b77f38c3cd715f59447f4e318fe38abd4f3fee57.tar
nixpkgs-b77f38c3cd715f59447f4e318fe38abd4f3fee57.tar.gz
nixpkgs-b77f38c3cd715f59447f4e318fe38abd4f3fee57.tar.bz2
nixpkgs-b77f38c3cd715f59447f4e318fe38abd4f3fee57.tar.lz
nixpkgs-b77f38c3cd715f59447f4e318fe38abd4f3fee57.tar.xz
nixpkgs-b77f38c3cd715f59447f4e318fe38abd4f3fee57.tar.zst
nixpkgs-b77f38c3cd715f59447f4e318fe38abd4f3fee57.zip
added a comment about the PATH variable under which incrontab commands will run
Diffstat (limited to 'nixos/modules/services/monitoring/incron.nix')
-rw-r--r--nixos/modules/services/monitoring/incron.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/incron.nix b/nixos/modules/services/monitoring/incron.nix
index 4a9e1a9b7b8..edba38140c6 100644
--- a/nixos/modules/services/monitoring/incron.nix
+++ b/nixos/modules/services/monitoring/incron.nix
@@ -1,3 +1,4 @@
+
 { config, lib, pkgs, ... }:
 
 with lib;
@@ -16,7 +17,11 @@ in
       enable = mkOption {
         type = types.bool;
         default = false;
-        description = "Whether to enable the incron daemon.";
+        description = ''
+          Whether to enable the incron daemon.
+
+          Note that commands run under incrontab only support common Nix profiles for the PATH provided variable.
+        '';
       };
 
       allow = mkOption {