33 lines
772 B
Nix
33 lines
772 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
programs.wezterm = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
return {
|
|
-- color_scheme = 'Ayu Dark (Gogh)',
|
|
-- font = wezterm.font('JetBrainsMono Nerd Font'),
|
|
font_size = 12,
|
|
use_fancy_tab_bar = false,
|
|
native_macos_fullscreen_mode = false,
|
|
enable_scroll_bar = false,
|
|
window_decorations = "RESIZE",
|
|
enable_kitty_graphics = true,
|
|
hide_tab_bar_if_only_one_tab = true,
|
|
window_padding = {
|
|
left = 0,
|
|
right = 0,
|
|
top = 0,
|
|
bottom = 0,
|
|
},
|
|
window_background_opacity = 1,
|
|
macos_window_background_blur = 0,
|
|
front_end = "WebGpu",
|
|
force_reverse_video_cursor = true,
|
|
}
|
|
'';
|
|
};
|
|
}
|