Commit 682524ed4a02

Vincent Demeester <vincent@sbr.pm>
2023-10-09 16:57:22
Nix: switch back to exa for a little bit
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent fa15550
Changed files (4)
nix
packages
systems
modules
profiles
users
nix/packages/fhs/std.nix
@@ -4,7 +4,7 @@ buildFHSUserEnv {
   name = "fhs-std";
   targetPkgs = pkgs: with pkgs; [
     envsubst
-    eza
+    exa # TODO: switch to eza in 2024
     git
     gnumake
     coreutils
systems/modules/profiles/base.nix
@@ -32,7 +32,7 @@ in
       systemPackages = with pkgs; [
         cachix
         direnv
-        eza
+        exa # TODO: switch to eza in 2024
         file
         htop
         iotop
users/vincent/core/default.nix
@@ -22,7 +22,7 @@ in
     packages = with pkgs; [
       enchive
       entr
-      eza
+      exa # TODO: switch to eza in 2024
       fd
       htop
       mosh
users/vincent/core/shell.nix
@@ -5,11 +5,11 @@
     cp = ''cp --interactive'';
     mv = ''mv --interactive'';
     gcd = ''cd (git root)'';
-    ls = ''eza'';
-    ll = ''eza --long'';
-    la = ''eza --all'';
-    l = ''eza --long --all --header'';
-    t = ''eza --tree --level=2'';
+    ls = ''exa'';
+    ll = ''exa --long'';
+    la = ''exa --all'';
+    l = ''exa --long --all --header'';
+    t = ''exa --tree --level=2'';
     wget = ''wget -c'';
     map = ''xargs -n1'';
     k = ''kubectl'';