Files
dotfiles/users/richie/home/gui/kitty.nix
T
Richie 0f69022e51
treefmt / nix fmt (pull_request) Successful in 7s
pytest / pytest (pull_request) Successful in 29s
build_systems / build-brain (pull_request) Successful in 48s
build_systems / build-bob (pull_request) Successful in 48s
build_systems / build-jeeves (pull_request) Successful in 2m42s
build_systems / build-brain (push) Successful in 30s
build_systems / build-leviathan (pull_request) Successful in 1m0s
build_systems / build-rhapsody-in-green (pull_request) Successful in 1m4s
treefmt / nix fmt (push) Successful in 6s
build_systems / build-bob (push) Successful in 33s
pytest / pytest (push) Successful in 25s
build_systems / build-leviathan (push) Successful in 41s
build_systems / build-rhapsody-in-green (push) Successful in 46s
build_systems / build-jeeves (push) Successful in 2m23s
disabled terminal bell
2026-05-29 13:52:46 -04:00

25 lines
729 B
Nix

{ pkgs, ... }:
{
programs.kitty = {
enable = true;
font.name = "IntoneMono Nerd Font";
settings = {
allow_remote_control = "yes";
shell = "${pkgs.zsh}/bin/zsh";
scrollback_lines = 50000;
wayland_titlebar_color = "background";
background_opacity = "0.75";
tab_bar_edge = "top";
tab_bar_style = "powerline";
enabled_layouts = "splits";
enable_audio_bell = "no";
};
keybindings = {
"ctrl+alt+1" = "launch --type=tab --tab-title jeeves kitten ssh jeeves";
"ctrl+alt+2" = "launch --type=tab --tab-title bob kitten ssh bob";
"ctrl+alt+3" = "launch --type=tab --tab-title brain kitten ssh brain";
};
themeFile = "VSCode_Dark";
};
}