2.home-manager/tests/modules/home-environment/session-path.nix
2025-10-26 15:43:53 -05:00

14 lines
266 B
Nix

{
home.sessionPath = [
"bar"
"baz"
"foo"
];
nmt.script = ''
hmSessVars=home-path/etc/profile.d/hm-session-vars.sh
assertFileExists $hmSessVars
assertFileContains $hmSessVars \
'export PATH="bar:baz:foo''${PATH:+:}$PATH"'
'';
}