config/homes/common/wezterm.nix

20 lines
391 B
Nix
Raw Normal View History

2024-09-15 12:56:25 +01:00
{
programs.wezterm = {
enable = true;
extraConfig = ''
return {
front_end = 'WebGpu',
color_scheme = 'OneDark (base16)',
hide_tab_bar_if_only_one_tab = true,
window_close_confirmation = 'NeverPrompt',
window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
}
}
'';
};
}