nix/programm_configs/zsh.nix
2024-04-19 09:54:50 +02:00

18 lines
389 B
Nix

{ pkgs, ... }:
{
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
# To make alacritty in ssh work
shellAliases = {
ssh = "TERM=xterm-256color $(which -p ssh)";
};
oh-my-zsh = {
enable = true;
plugins = [ "git" "battery" "docker" "docker-compose" "virtualenv" ];
theme = "agnoster";
};
};
}