1
0
Fork 0
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:
Emily 2024-06-13 11:14:19 +01:00 committed by GitHub
commit 139ea5dd92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;