flake/users/guanranwang/home-manager/applications/wezterm/default.nix

18 lines
328 B
Nix
Raw Normal View History

2023-12-02 10:42:59 +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",
},
}
'';
};
}