mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-24 13:17:01 -04:00
26 lines
436 B
Nix
26 lines
436 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [
|
|
kitty
|
|
];
|
|
file = {
|
|
kitty = {
|
|
recursive = true;
|
|
source = ../../../../dotfiles/kitty;
|
|
target = "./.config/kitty";
|
|
};
|
|
};
|
|
shellAliases = {
|
|
"icat" = "kitten icat";
|
|
};
|
|
};
|
|
programs = {
|
|
zsh = {
|
|
# Completion support for kitten
|
|
initExtra = ''
|
|
compdef _kitty kitten
|
|
'';
|
|
};
|
|
};
|
|
}
|