nix-config/home/features/desktop/common/wezterm.nix
GHOSCHT f054d7186e
Switch from Firefox to Librewolf
homemanager now supports Librewolf configuration
2025-01-09 23:51:43 +01:00

22 lines
477 B
Nix

{
pkgs,
config,
...
}: {
programs.wezterm = {
enable = true;
extraConfig = ''
return {
front_end = "WebGpu", -- fixes https://github.com/wez/wezterm/issues/5990H
warn_about_missing_glyphs=false,
enable_wayland = true,
hide_tab_bar_if_only_one_tab = true,
window_close_confirmation = "NeverPrompt",
use_ime = true,
set_environment_variables = {
TERM = 'wezterm',
},
}
'';
};
}