universe/users/profiles/kitty.nix
Infinidoge 9af2aeaae9 fix(kitty): add softsh alias for soft servers
Works around a limitation with the Soft git server which prevents the
kitty ssh alias from functioning.
2023-03-30 12:29:47 -04:00

15 lines
367 B
Nix

{ pkgs, ... }: {
programs.kitty = {
enable = true;
font = {
package = (pkgs.nerdfonts.override { fonts = [ "DejaVuSansMono" ]; });
name = "DejaVuSansMono";
size = 12;
};
};
home.shellAliases = {
ssh = "kitty +kitten ssh";
softsh = "TERM=xterm-256color \ssh"; # https://github.com/charmbracelet/soft-serve/issues/72
};
}