Files
nix-config/home-manager/configs/zsh.nix
2024-11-09 11:52:23 +05:00

26 lines
519 B
Nix

{ config, pkgs, ... }:
{
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
update = "sudo nixos-rebuild switch --flake ~/.dotfiles && home-manager switch --flake ~/.dotfiles";
".." = "cd ..";
ls = "exa";
vim = "nvim";
grep = "rg";
du = "dust";
rm = "rip";
};
history = {
size = 10000;
path = "${config.xdg.dataHome}/zsh/history";
};
};
}