Files
nixos-blueprint/modules/home/programs/kitty.nix
T
2025-12-31 15:03:16 +02:00

15 lines
202 B
Nix

{
config,
lib,
...
}: {
programs.kitty = {
settings = {
tab_bar_edge = "bottom";
tab_bar_align = "left";
tab_bar_style = "fade";
# tab_separator = " ";
};
};
}