flocon/home/base/programs/wezterm.nix

18 lines
296 B
Nix
Raw Normal View History

{ ... }:
{
programs.wezterm = {
enable = true;
extraConfig = ''
local wezterm = require 'wezterm'
return {
front_end = "WebGpu",
enable_tab_bar = false,
2024-08-27 13:46:49 +00:00
enable_wayland = false,
2024-08-28 13:41:53 +00:00
harfbuzz_features = { "ss01", "ss03" },
}
'';
};
}