nix/shared/kitty.nix
2024-11-11 16:15:26 +01:00

25 lines
600 B
Nix

{ pkgs, lib, myhostname, ... }:
{
programs.kitty = {
enable = true;
font = if myhostname == "laptop" then {
# name = "Iosevka Nerd Font Bold";
name = "ComicShannsMono Nerd Font Bold";
size = 20;
} else {
# name = "Iosevka Nerd Font Bold";
name = "ComicShannsMono Nerd Font Bold";
size = 13;
};
shellIntegration = {
mode = "no-cursor";
};
theme = "Catppuccin-Mocha";
settings = {
confirm_os_window_close = 2;
cursor_shape = "block";
cursor_blink_interval = 0;
enable_audio_bell = false;
};
};
}