From 8190cf8a9bcc690b4eba09bebfab94816bab82cb Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Fri, 17 May 2024 23:14:52 -0400 Subject: [PATCH] migrate eza to home-manager programs config Signed-off-by: ahuston-0 --- users/alice/home.nix | 9 ++++++++- users/alice/home/zsh.nix | 1 - 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/users/alice/home.nix b/users/alice/home.nix index 3829522..daba028 100644 --- a/users/alice/home.nix +++ b/users/alice/home.nix @@ -67,7 +67,6 @@ gitoxide tealdeer helix - eza # nix specific packages nil @@ -109,16 +108,24 @@ programs = { starship.enable = true; + fzf = { enable = true; enableZshIntegration = true; }; + direnv = { enable = true; enableZshIntegration = true; nix-direnv.enable = true; }; + eza = { + enable = true; + icons = true; + git = true; + }; + neovim = { enable = true; defaultEditor = true; diff --git a/users/alice/home/zsh.nix b/users/alice/home/zsh.nix index b58b2a8..25064c6 100644 --- a/users/alice/home/zsh.nix +++ b/users/alice/home/zsh.nix @@ -67,7 +67,6 @@ "htgp" = "history | grep"; "gen_walpaper" = "wal -i '/home/alice/Pictures/Wallpapers/1440pdump'"; "vlgdf" = "valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes"; - "ls" = "eza --icons"; "libreoffice-writer" = "libreoffice --writer"; "libreoffice-calc" = "libreoffice --calc"; "notes" = "code /home/alice/Scripts/Notes/dendron.code-workspace";