diff options
author | Franck Cuny <franck@fcuny.net> | 2024-11-18 08:26:59 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-11-18 08:26:59 -0800 |
commit | b66da5ffe8e53d5318eb1790e76e5e36d39df33e (patch) | |
tree | 5b252b501752b49821ef683c77398eb4a41d16aa /nix/profiles/home-manager | |
parent | configuration for yt-dlp (diff) | |
download | world-b66da5ffe8e53d5318eb1790e76e5e36d39df33e.tar.gz |
add eza, an alternative to ls
Diffstat (limited to 'nix/profiles/home-manager')
-rw-r--r-- | nix/profiles/home-manager/shell.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/nix/profiles/home-manager/shell.nix b/nix/profiles/home-manager/shell.nix index b40e3f2..d90e125 100644 --- a/nix/profiles/home-manager/shell.nix +++ b/nix/profiles/home-manager/shell.nix @@ -77,6 +77,13 @@ HOMEBREW_NO_AUTO_UPDATE = 1; }; + # an alternative to ls + programs.eza = { + enable = true; + icons = true; + extraOptions = [ "--group-directories-first" "--no-quotes" "--git-ignore" ]; + }; + programs.direnv = { enable = true; nix-direnv.enable = true; |