1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-10 07:08:44 +02:00
home-manager/tests/modules/programs/wezterm/bash-integration-default.nix

15 lines
266 B
Nix
Raw Normal View History

{ ... }:
{
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"'
'';
}