From 8835d9f86983c24db67d425c2d669e5aa725218f Mon Sep 17 00:00:00 2001 From: Philipp Date: Fri, 23 May 2025 16:32:17 +0200 Subject: [PATCH] add(eza): add aliasses for eza --- modules/home/cli-apps/fish/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/home/cli-apps/fish/default.nix b/modules/home/cli-apps/fish/default.nix index 4ba9198..c91e43d 100644 --- a/modules/home/cli-apps/fish/default.nix +++ b/modules/home/cli-apps/fish/default.nix @@ -22,6 +22,8 @@ in nix-dns = "nixos-rebuild switch --flake .#dns --target-host dns-1 --use-remote-sudo && nixos-rebuild switch --flake .#dns --target-host dns-2 --use-remote-sudo"; nix-blarm = "nixos-rebuild switch --flake .#blarm --target-host blarm --use-remote-sudo"; cd = "z"; + ls = "exa"; + l = "exa --icons"; }; plugins = [ { @@ -47,6 +49,11 @@ in enable = true; enableFishIntegration = true; }; + + programs.eza = { + enable = true; + enableFishIntegration = true; + }; }; }