nixos/home/gui/kitty.nix
Evie Litherland-Smith 8c7f8dba52 Rearrange again to reduce complexity
Move collections to use default.nix in relevant directories
Combine GUI elements into gui directory
2023-05-15 11:12:17 +01:00

31 lines
770 B
Nix

{ pkgs, ... }:
{
programs.kitty = {
enable = true;
font = {
package = with pkgs; (nerdfonts.override { fonts = [ "FiraCode" ]; });
name = "Fira Code Nerd Font";
size = 14;
};
settings = {
initial_window_width = 640;
initial_window_height = 400;
background_opacity = "0.95";
disable_ligatures = "cursor";
show_hyperlink_targets = true;
copy_on_select = true;
paste_actions = "confirm";
enable_audio_bell = false;
window_border_width = 2;
window_margin_width = 5;
tab_bar_edge = "top";
tab_bar_style = "powerline";
tab_powerline_style = "round";
tab_bar_min_tabs = 1;
update_check_interval = 0;
};
theme = "Catppuccin-Macchiato";
};
}