1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

launchd: allow WatchPaths to contain ~

This commit is contained in:
Michael Hoang 2024-09-23 19:13:33 +07:00
parent bd7d1e3912
commit ad40470be0

View file

@ -310,7 +310,7 @@ in
}; };
WatchPaths = mkOption { WatchPaths = mkOption {
type = types.nullOr (types.listOf types.path); type = types.nullOr (types.listOf (types.either types.str types.path));
default = null; default = null;
description = '' description = ''
This optional key causes the job to be started if any one of the listed paths are modified. This optional key causes the job to be started if any one of the listed paths are modified.