aboutsummaryrefslogtreecommitdiff
path: root/home/programs/cli/fd.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--home/programs/cli/fd.nix (renamed from home/profiles/fd.nix)6
1 files changed, 5 insertions, 1 deletions
diff --git a/home/profiles/fd.nix b/home/programs/cli/fd.nix
index 8fc3a75..873eaed 100644
--- a/home/profiles/fd.nix
+++ b/home/programs/cli/fd.nix
@@ -1,4 +1,4 @@
-{ ... }:
+{ pkgs, ... }:
{
programs.fd = {
enable = true;
@@ -9,4 +9,8 @@
"vendor/"
];
};
+
+ programs.fish.shellAliases = {
+ find = "${pkgs.fd}/bin/fd";
+ };
}