bash: support path in sessionVariables again (#7354)

Upstream shell environment variables support paths.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman
2025-07-01 10:47:16 -05:00
committed by GitHub
parent 96354906f5
commit 479f888967

View File

@@ -137,7 +137,13 @@ in
sessionVariables = mkOption {
default = { };
type = with types; lazyAttrsOf (either str int);
type =
with types;
lazyAttrsOf (oneOf [
str
int
path
]);
example = {
MAILCHECK = 30;
};