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