diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-12-30 11:39:32 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-12-30 11:39:32 -0800 |
| commit | 219d9e542540539f1cca47f3aec4b893f291061e (patch) | |
| tree | cc75518be2a32715e11eaf7d6d4371096423834a /home | |
| parent | fix typo in justfile (diff) | |
| download | infra-219d9e542540539f1cca47f3aec4b893f291061e.tar.gz | |
fix eza configuration
Diffstat (limited to '')
| -rw-r--r-- | home/programs/cli/eza.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/home/programs/cli/eza.nix b/home/programs/cli/eza.nix index 517ab2f..470ed1c 100644 --- a/home/programs/cli/eza.nix +++ b/home/programs/cli/eza.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ ... }: { programs.eza = { enable = true; @@ -13,9 +13,9 @@ ]; }; - programs.fish.shellAliases = with pkgs; { - la = "${eza}/bin/eza -la"; - ll = "${eza}/bin/eza -la -L=1"; - lt = "${eza}/bin/eza -aT -L=2"; + programs.fish.shellAliases = { + la = "eza -la"; + ll = "eza -la -L=1"; + lt = "eza -aT -L=2"; }; } |
