fix(wezterm): broken font redering on 24.11 #152

Merged
jalil merged 2 commits from fix-wezterm into main 2024-11-20 21:41:58 +01:00
Showing only changes of commit 2be4067567 - Show all commits

View file

@ -90,10 +90,17 @@ in
# Terminal # Terminal
wezterm = { wezterm = {
enable = cfg.terminal == "wezterm"; enable = cfg.terminal == "wezterm";
extraConfig = lib.optionalString config.jhome.styling.enable '' extraConfig =
config = {} lib.optionalString config.jhome.styling.enable # lua
''
local wezterm = require("wezterm")
local config = wezterm.config_builder()
config.front_end = "WebGpu"
config.hide_tab_bar_if_only_one_tab = true config.hide_tab_bar_if_only_one_tab = true
config.window_padding = { left = 1, right = 1, top = 1, bottom = 1 } config.window_padding = { left = 1, right = 1, top = 1, bottom = 1 }
return config return config
''; '';
}; };