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