mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
24d590cc32
* wezterm: Add `enableBashIntegration` option * wezterm: Add `enableZshIntegration` option
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"'
|
|
'';
|
|
}
|