diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-09-07 16:58:59 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-09-07 16:58:59 +0100 |
commit | a901cdabc298fe37ede23cfd8c2e459bbbac917d (patch) | |
tree | 18cb16da3cdf6e680eb51d2e3be0aa253718b47c /nix-conf/home/includes/common.nix | |
parent | 1e5f22a7fafdfb9c1928b03c7b4ce0e935ad6fcb (diff) | |
download | dotfiles-a901cdabc298fe37ede23cfd8c2e459bbbac917d.tar.gz |
Add eza config
Diffstat (limited to 'nix-conf/home/includes/common.nix')
-rw-r--r-- | nix-conf/home/includes/common.nix | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/nix-conf/home/includes/common.nix b/nix-conf/home/includes/common.nix index 7ae5c41..7173c1c 100644 --- a/nix-conf/home/includes/common.nix +++ b/nix-conf/home/includes/common.nix @@ -60,7 +60,6 @@ in ea elinks entr - eza fd file fzf @@ -91,6 +90,7 @@ in ssh-to-age tealdeer tre-command + tree ugrep uni unzip @@ -120,6 +120,21 @@ in }; }; + programs.eza = { + enable = true; + git = true; + icons = true; + extraOptions = [ + "--colour=auto" + "--long" + "--group-directories-first" + "--classify" + "--no-user" + "--no-time" + "--no-filesize" + "--no-permissions" + ]; + }; programs.gpg.enable = true; programs.nix-index = { |