dotfiles/modules/home/gui/apps/emulators/wezterm/config/extraConfig.nix

20 lines
415 B
Nix
Raw Normal View History

2025-03-29 23:08:26 -05:00
{ flake, ... }:
let
inherit (flake.config.aesthetics.themes)
fonts
;
in
''
return {
color_scheme = "Catppuccin Macchiato",
2025-06-26 02:15:04 -05:00
font_size = ${builtins.toString fonts.sizes.terminal},
font = wezterm.font('${fonts.name}'),
2025-03-29 23:08:26 -05:00
enable_tab_bar = false,
window_close_confirmation = 'NeverPrompt',
term = 'wezterm',
enable_wayland = true,
front_end = "WebGpu",
max_fps = 200
}
''