aboutsummaryrefslogtreecommitdiff
path: root/home/programs/fd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/programs/fd.nix')
-rw-r--r--home/programs/fd.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/home/programs/fd.nix b/home/programs/fd.nix
new file mode 100644
index 0000000..cdbae66
--- /dev/null
+++ b/home/programs/fd.nix
@@ -0,0 +1,12 @@
+{ ... }:
+{
+ # an alternative to find
+ programs.fd = {
+ enable = true;
+ hidden = true;
+ ignores = [
+ ".git/"
+ ".direnv/"
+ ];
+ };
+}