From fa898e2453685d22fe8939617e57771ba89cb849 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Wed, 5 Mar 2025 14:56:22 +0100 Subject: [PATCH] Home Gen457 @ 2025-03-05-14:56 --- modules/home/zsh/zsh.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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 = {