config/homes/common/wezterm.nix
2024-09-29 16:42:01 +01:00

20 lines
391 B
Nix

{
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,
}
}
'';
};
}