diff --git a/nixos/modules/services/monitoring/incron.nix b/nixos/modules/services/monitoring/incron.nix
index 5eec4b82fa02..4a9e1a9b7b8f 100644
--- a/nixos/modules/services/monitoring/incron.nix
+++ b/nixos/modules/services/monitoring/incron.nix
@@ -22,7 +22,14 @@ in
allow = mkOption {
type = types.nullOr (types.listOf types.str);
default = null;
- description = "Users allowed to use incrontab.";
+ description = ''
+ Users allowed to use incrontab.
+
+ If empty then no user will be allowed to have their own incrontab.
+ If null then will defer to .
+ If both and are null
+ then all users will be allowed to have their own incrontab.
+ '';
};
deny = mkOption {