mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
17 lines
269 B
Nix
17 lines
269 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
programs.bash.enable = true;
|
||
|
|
||
|
programs.wezterm = {
|
||
|
enable = true;
|
||
|
enableBashIntegration = true;
|
||
|
};
|
||
|
|
||
|
test.stubs.wezterm = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContains home-files/.bashrc 'source "@wezterm@/etc/profile.d/wezterm.sh"'
|
||
|
'';
|
||
|
}
|