Files
nixos-blueprint/modules/hm-programs/kitty.nix
T
2025-12-25 23:41:24 +02:00

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 = " ";
};
};
}