mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 10:47:02 +00:00
13 lines
228 B
Nix
13 lines
228 B
Nix
|
{
|
||
|
programs.zsh.enable = true;
|
||
|
|
||
|
programs.wezterm = {
|
||
|
enable = true;
|
||
|
enableZshIntegration = false;
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileNotRegex home-files/.zshrc 'source "@wezterm@/etc/profile.d/wezterm.sh"'
|
||
|
'';
|
||
|
}
|