added a comment about the PATH variable under which incrontab commands will run

This commit is contained in:
Aaron Andersen 2018-08-27 21:31:55 +00:00
parent bd50320cb1
commit b77f38c3cd

View File

@ -1,3 +1,4 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with lib; with lib;
@ -16,7 +17,11 @@ in
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = false; 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 { allow = mkOption {