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
14 lines
266 B
Nix
14 lines
266 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.bash.enable = true;
|
|
|
|
# Bash integration is enabled by default.
|
|
programs.wezterm.enable = true;
|
|
|
|
test.stubs.wezterm = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContains home-files/.bashrc 'source "@wezterm@/etc/profile.d/wezterm.sh"'
|
|
'';
|
|
}
|