nix/moduler/common/kitty.nix
2024-04-24 14:52:47 +02:00

26 lines
569 B
Nix

{ pkgs, lib, myhostname, ... }:
{
programs.kitty = {
enable = true;
font = if myhostname == "desktop" then {
name = "FiraCode Nerd Font";
size = 18;
} else {
name = "FiraCode Nerd Font";
# size = 18;
size = 24;
# size = 30;
};
shellIntegration = {
enableZshIntegration = true;
mode = "no-cursor";
};
theme = "Catppuccin-Macchiato";
settings = {
confirm_os_window_close = 2;
cursor_shape = "block";
cursor_blink_interval = 0;
enable_audio_bell = false;
};
};
}