nix-config/home/features/desktop/common/wezterm.nix

23 lines
498 B
Nix
Raw Normal View History

2024-01-07 15:37:18 +01:00
{
pkgs,
config,
...
}: {
programs.wezterm = {
enable = true;
extraConfig = ''
return {
2024-12-02 20:15:40 +01:00
front_end = "WebGpu", -- fixes https://github.com/wez/wezterm/issues/5990H
2024-02-06 21:32:35 +01:00
warn_about_missing_glyphs=false,
2024-12-02 20:15:40 +01:00
-- window_background_opacity = 0.83,
2024-01-07 15:37:18 +01:00
hide_tab_bar_if_only_one_tab = true,
window_close_confirmation = "NeverPrompt",
2024-05-14 09:15:35 +02:00
use_ime = true,
2024-01-07 15:37:18 +01:00
set_environment_variables = {
TERM = 'wezterm',
},
}
'';
};
}