dotfiles/home/modules/gui/kitty.nix

23 lines
661 B
Nix
Raw Normal View History

2024-12-21 22:58:20 +00:00
{ config, pkgs, ... }: {
programs.kitty = {
enable = true;
2024-12-22 01:29:05 +00:00
font.name = "BerkeleyMono Nerd Font Mono";
package = (config.lib.nixGL.wrap pkgs.kitty);
settings = {
editor = "${pkgs.neovim}/bin/nvim";
enable_audio_bell = "no";
linux_display_server = "x11";
paste_actions = "quote-urls-at-prompt,confirm,confirm-if-large";
2024-12-22 14:21:08 +00:00
remember_window_size = "yes";
2024-12-22 01:29:05 +00:00
resize_debounce_time = "0.5";
shell = "${pkgs.fish}/bin/fish";
strip_trailing_spaces = "smart";
visual_bell_duration = "1.0 ease-in-out";
};
shellIntegration.enableFishIntegration = true;
themeFile = "Catppuccin-Mocha";
2024-12-21 22:58:20 +00:00
};
}