diff --git a/modules/home/zsh/zsh.nix b/modules/home/zsh/zsh.nix index 3a5563d..3969743 100644 --- a/modules/home/zsh/zsh.nix +++ b/modules/home/zsh/zsh.nix @@ -13,16 +13,18 @@ in { nix-direnv.enable = true; }; + # fancy ls command + programs.lsd = { + enable = true; + enableAliases = true; + }; + # Zsh programs.zsh = { enable = true; enableCompletion = true; syntaxHighlighting.enable = true; - shellAliases = { - ll = "ls -l"; - update = "sudo nixos-rebuild switch"; - }; history.size = 10000; history.path = "${config.xdg.dataHome}/zsh/history"; oh-my-zsh = {