{bash,zsh}: align sessionVariables type

This matches `home.sessionVariables`.
This commit is contained in:
Andrew Marshall
2025-09-29 07:40:43 -04:00
committed by Austin Horstman
parent 466d5909eb
commit 62f445c13c
2 changed files with 10 additions and 2 deletions

View File

@@ -137,8 +137,9 @@ in
with types;
lazyAttrsOf (oneOf [
str
int
path
int
float
]);
example = {
MAILCHECK = 30;

View File

@@ -247,7 +247,14 @@ in
sessionVariables = mkOption {
default = { };
type = types.attrs;
type =
with types;
lazyAttrsOf (oneOf [
str
path
int
float
]);
example = {
MAILCHECK = 30;
};