2020-10-12 00:22:58 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.zsh = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
sessionVariables = {
|
|
|
|
V1 = "v1";
|
|
|
|
V2 = "v2-${config.programs.zsh.sessionVariables.V1}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-11-04 16:42:44 +00:00
|
|
|
test.stubs.zsh = { };
|
2020-10-12 00:22:58 +00:00
|
|
|
|
|
|
|
nmt.script = ''
|
2023-01-10 09:35:00 +00:00
|
|
|
assertFileExists home-files/.zshenv
|
|
|
|
assertFileRegex home-files/.zshenv 'export V1="v1"'
|
|
|
|
assertFileRegex home-files/.zshenv 'export V2="v2-v1"'
|
2020-10-12 00:22:58 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|