Skip to content

Commit

Permalink
Merge pull request #963 from elohmeier/launchd-lowpriobgio
Browse files Browse the repository at this point in the history
launchd: add LowPriorityBackgroundIO config
  • Loading branch information
emilazy committed Jun 13, 2024
2 parents 315aa64 + 9ed6009 commit 139ea5d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions modules/launchd/launchd.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
type = types.nullOr types.bool;
default = null;
Expand Down

0 comments on commit 139ea5d

Please sign in to comment.