75fa0ae5af
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
17 lines
291 B
Nix
17 lines
291 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.zsh.enable = true;
|
|
|
|
programs.wezterm = {
|
|
enable = true;
|
|
enableZshIntegration = false;
|
|
};
|
|
|
|
test.stubs.wezterm = { };
|
|
test.stubs.zsh = { };
|
|
|
|
nmt.script = ''
|
|
assertFileNotRegex home-files/.zshrc 'source "@wezterm@/etc/profile.d/wezterm.sh"'
|
|
'';
|
|
}
|