16 lines
221 B
Nix
16 lines
221 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.kitty = {
|
|
enable = true;
|
|
settings = {
|
|
tab_bar_edge = "bottom";
|
|
tab_bar_align = "left";
|
|
tab_bar_style = "fade";
|
|
# tab_separator = " ";
|
|
};
|
|
};
|
|
}
|