mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
33 lines
619 B
Nix
33 lines
619 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.bash = {
|
|
enable = true;
|
|
enableCompletion = false;
|
|
|
|
sessionVariables = {
|
|
V1 = "v1";
|
|
V2 = "v2-${config.programs.bash.sessionVariables.V1}";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.profile
|
|
assertFileContent \
|
|
home-files/.profile \
|
|
${
|
|
builtins.toFile "session-variables-expected" ''
|
|
. "/home/hm-user/.nix-profile/etc/profile.d/hm-session-vars.sh"
|
|
|
|
export V1="v1"
|
|
export V2="v2-v1"
|
|
|
|
|
|
''
|
|
}
|
|
'';
|
|
};
|
|
}
|