programs/wezterm: remove conditionals for shell init

`programs.bash.enable` is apparently removed.
This commit is contained in:
Gabriel Arazas 2023-06-29 12:30:03 +08:00
parent d60e406557
commit 5754583ce0
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -22,7 +22,7 @@ in
environment.systemPackages = [ cfg.package ];
# This is needed for shell integration and applying semantic zones.
programs.bash.interactiveShellInit = lib.mkIf config.programs.bash.enable shellIntegration;
programs.zsh.interactiveShellInit = lib.mkIf config.programs.zsh.enable shellIntegration;
programs.bash.interactiveShellInit = shellIntegration;
programs.zsh.interactiveShellInit = shellIntegration;
};
}