mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
15 lines
266 B
Nix
15 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"'
|
||
|
'';
|
||
|
}
|