flake/home/applications/wezterm/default.nix
2024-01-17 19:53:00 +08:00

17 lines
325 B
Nix

{
programs.wezterm = {
enable = true;
extraConfig = ''
return {
color_scheme = "Tokyo Night",
default_cursor_style = 'SteadyBar',
window_padding = {
left = "12px",
right = "12px",
top = "12px",
bottom = "12px",
},
}
'';
};
}