dotfiles/NixOS/modules/zsh.nix

20 lines
365 B
Nix
Raw Normal View History

2024-05-31 15:20:29 +02:00
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
htop
];
programs.zsh = {
enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
shellAliases = {
ll = "ls -lhat";
};
history.size = 10000;
history.path = "${config.xdg.dataHome}/zsh/history";
};
}