Files
nixos-config/modules/home/kitty.nix
Mans Ziesel 25b0a79262 Add fish, kitty, and neovim home-manager modules
- fish: vi key bindings, custom prompt, shell aliases, PAGER=nvim +Man!
- kitty: Iosevka 14pt, Tokyo Night theme, low-latency Wayland settings
- neovim: plugins declared via nix (no runtime downloads), init.lua config
  preserved; ripgrep/fzf in extraPackages for telescope
- Switch sway terminal from foot to kitty, drop programs.foot
- Enable fish system-wide and set as login shell for mans
- Add Iosevka to system fonts

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-23 17:02:36 +02:00

26 lines
427 B
Nix

{ ... }:
{
programs.kitty = {
enable = true;
font = {
name = "Iosevka";
size = 14;
};
settings = {
enable_audio_bell = false;
background_opacity = "1.0";
input_delay = 0;
repaint_delay = 2;
sync_to_monitor = false;
# wayland_enable_ime = false;
};
keybindings = {
"f9" = "close_other_windows_in_tab";
};
};
}