nixos-private-dots/modules/home-manager/terminal/kitty.nix
2024-08-10 21:27:06 +03:00

11 lines
No EOL
315 B
Nix

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