flake/home/applications/wezterm/default.nix

18 lines
325 B
Nix
Raw Normal View History

2024-01-15 04:18:06 +00:00
{
programs.wezterm = {
enable = true;
extraConfig = ''
return {
color_scheme = "Tokyo Night",
default_cursor_style = 'SteadyBar',
window_padding = {
left = "12px",
right = "12px",
top = "12px",
bottom = "12px",
},
}
'';
};
}