17 lines
287 B
Nix
17 lines
287 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
theme = "agnoster";
|
|
};
|
|
|
|
initContent = ''
|
|
# Use kitty's ssh helper if running inside kitty
|
|
[ "$TERM" = "xterm-kitty" ] && alias ssh="kitty +kitten ssh"
|
|
'';
|
|
};
|
|
}
|