mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-13 20:30:02 +00:00
Merge pull request #857 from thanegill/patch-2
Allow launchd serivceConfig.LimitLoadToSessionType to be a list
This commit is contained in:
commit
1e706ef323
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ with lib;
|
|||
};
|
||||
|
||||
LimitLoadToSessionType = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
type = types.nullOr (types.oneOf [types.str (types.listOf types.str)]);
|
||||
default = null;
|
||||
description = lib.mdDoc ''
|
||||
This configuration file only applies to sessions of the type specified. This key is used in concert
|
||||
|
|
Loading…
Add table
Reference in a new issue