mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
24d590cc32
* wezterm: Add `enableBashIntegration` option * wezterm: Add `enableZshIntegration` option
16 lines
270 B
Nix
16 lines
270 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.bash.enable = true;
|
|
|
|
programs.wezterm = {
|
|
enable = true;
|
|
enableBashIntegration = false;
|
|
};
|
|
|
|
test.stubs.wezterm = { };
|
|
|
|
nmt.script = ''
|
|
assertFileNotRegex home-files/.bashrc 'source "@wezterm@/etc/profile.d/wezterm.sh"'
|
|
'';
|
|
}
|