nixos-private-dots/modules/home-manager/terminal/kitty.nix
2024-07-31 06:18:16 +03:00

15 lines
No EOL
376 B
Nix

{
programs.kitty = { # Быстрое отображение медиа, но кривой SSH
enable = true;
shellIntegration = { # https://sw.kovidgoyal.net/kitty/shell-integration/
enableBashIntegration = true;
enableFishIntegration = true;
enableZshIntegration = true;
};
font = {
name = "JetBrainsMono Nerd Font";
};
};
}