nixos/home/env/zsh.nix

16 lines
361 B
Nix

{ config, ... }:
{
programs.zsh = {
enable = true;
shellAliases = { ll = "ls -l"; lg = "lazygit"; };
history = {
size = 10000;
path = "${config.xdg.dataHome}/zsh/history";
};
};
programs.keychain.enableZshIntegration = true;
programs.starship.enableZshIntegration = true;
programs.nix-index.enableZshIntegration = true;
}