Skip to content

Commit

Permalink
Allow launchd serivceConfig.LimitLoadToSessionType to be a list
Browse files Browse the repository at this point in the history
  • Loading branch information
thanegill committed Jan 19, 2024
1 parent 74ab022 commit 6b27542
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 6b27542

Please sign in to comment.