18 lines
389 B
Nix
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";
|
|
};
|
|
};
|
|
}
|