mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
14 lines
282 B
Nix
14 lines
282 B
Nix
{
|
|
home.sessionSearchVariables.TEST = [
|
|
"bar"
|
|
"baz"
|
|
"foo"
|
|
];
|
|
|
|
nmt.script = ''
|
|
hmSessVars=home-path/etc/profile.d/hm-session-vars.sh
|
|
assertFileExists $hmSessVars
|
|
assertFileContains $hmSessVars \
|
|
'export TEST="bar:baz:foo''${TEST:+:}$TEST"'
|
|
'';
|
|
}
|