From 668521f9ed3eeb8db5fba36791cf7d7d9070b1f8 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Fri, 4 Aug 2023 08:48:14 -0500 Subject: [PATCH] add exa --- nix/home/features/cli/default.nix | 1 + nix/home/features/cli/exa.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 nix/home/features/cli/exa.nix diff --git a/nix/home/features/cli/default.nix b/nix/home/features/cli/default.nix index 9995f72..8906255 100644 --- a/nix/home/features/cli/default.nix +++ b/nix/home/features/cli/default.nix @@ -2,6 +2,7 @@ # Core CLI apps imports = [ + ./exa.nix ./git.nix ./fish.nix ./tmux.nix diff --git a/nix/home/features/cli/exa.nix b/nix/home/features/cli/exa.nix new file mode 100644 index 0000000..06890bb --- /dev/null +++ b/nix/home/features/cli/exa.nix @@ -0,0 +1,10 @@ +{ lib, ... }: { + programs.exa = { + enable = true; + enableAliases = true; + extraOptions = [ + "--group-directories-first" + ]; + git = true; + }; +} \ No newline at end of file