1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/bash/session-variables.nix
2025-09-24 15:18:50 +02:00

27 lines
576 B
Nix

{ config, ... }:
{
programs.bash = {
enable = true;
enableCompletion = false;
sessionVariables = {
V1 = "v1";
V2 = "v2-${config.programs.bash.sessionVariables.V1}";
};
};
nmt.script = ''
assertFileExists home-files/.profile
assertFileContent \
"$(normalizeStorePaths home-files/.profile)" \
${builtins.toFile "session-variables-expected" ''
. "/nix/store/00000000000000000000000000000000-hm-session-vars.sh/etc/profile.d/hm-session-vars.sh"
export V1="v1"
export V2="v2-v1"
''}
'';
}