1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-02-17 05:35:06 +01:00

launchd: add LowPriorityBackgroundIO config

This commit is contained in:
Enno Richter 2023-04-03 21:25:57 +02:00
parent a7117efb37
commit 4254c0964b

View file

@ -706,6 +706,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;