mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-20 15:22:34 +00:00
16 lines
387 B
Nix
16 lines
387 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
({ ... }: { config.home.sessionSearchVariables.TEST = [ "foo" ]; })
|
||
|
({ ... }: { config.home.sessionSearchVariables.TEST = [ "bar" "baz" ]; })
|
||
|
];
|
||
|
|
||
|
nmt.script = ''
|
||
|
hmSessVars=home-path/etc/profile.d/hm-session-vars.sh
|
||
|
assertFileExists $hmSessVars
|
||
|
assertFileContains $hmSessVars \
|
||
|
'export TEST="bar:baz:foo''${TEST:+:}$TEST"'
|
||
|
'';
|
||
|
}
|