Skip to content

Commit

Permalink
Merge pull request #857 from thanegill/patch-2
Browse files Browse the repository at this point in the history
Allow launchd serivceConfig.LimitLoadToSessionType to be a list
  • Loading branch information
Enzime authored Jan 22, 2024
2 parents 91c19ab + 6b27542 commit 1e706ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/launchd/launchd.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1e706ef

Please sign in to comment.