From bb7c6c587d4d495567ca1648058c8d237b7dfa9c Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Fri, 15 Mar 2024 00:01:19 -0400 Subject: [PATCH] home-manager: added modules and extra config for CLI utilities --- home/aly.nix | 12 ++++++++++-- home/common.nix | 3 --- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/home/aly.nix b/home/aly.nix index 130922dd..dcb4c0ab 100644 --- a/home/aly.nix +++ b/home/aly.nix @@ -14,8 +14,6 @@ # Packages that should be installed to the user profile. home.packages = with pkgs; [ curl - eza # A modern replacement for ‘ls’ - fzf # A command-line fuzzy finder gh git github-desktop @@ -24,4 +22,14 @@ warp-terminal wget ]; + + programs.eza.enable = true; + programs.eza.git = true; + + programs.fzf.enable = true; + + programs.nnn.enable = true; + + programs.tmux.enable = true; + } diff --git a/home/common.nix b/home/common.nix index 2839ef50..2352875c 100644 --- a/home/common.nix +++ b/home/common.nix @@ -4,9 +4,6 @@ programs.bash = { enable = true; enableCompletion = true; - shellAliases = { - ls = "eza --group-directories-first"; - }; initExtra = '' export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ "