mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
Merge pull request #963 from elohmeier/launchd-lowpriobgio
launchd: add LowPriorityBackgroundIO config
This commit is contained in:
commit
139ea5dd92
1 changed files with 9 additions and 0 deletions
|
@ -675,6 +675,15 @@ with lib;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
LowPriorityBackgroundIO = mkOption {
|
||||||
|
type = types.nullOr types.bool;
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
This optional key specifies whether the kernel should consider this daemon to be low priority when
|
||||||
|
doing file system I/O when the process is throttled with the Darwin-background classification.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
LaunchOnlyOnce = mkOption {
|
LaunchOnlyOnce = mkOption {
|
||||||
type = types.nullOr types.bool;
|
type = types.nullOr types.bool;
|
||||||
default = null;
|
default = null;
|
||||||
|
|
Loading…
Reference in a new issue