25 lines
423 B
Nix
25 lines
423 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"
|
|
|
|
[[ $- != *i* ]] && return
|
|
|
|
# Run fastfetch
|
|
if command -v fastfetch >/dev/null 2>&1; then
|
|
fastfetch
|
|
fi
|
|
|
|
'';
|
|
};
|
|
}
|