diff --git a/hand7s/programs/fd.nix b/hand7s/programs/fd.nix new file mode 100644 index 0000000..e83f61d --- /dev/null +++ b/hand7s/programs/fd.nix @@ -0,0 +1,13 @@ +_: { + programs = { + fd = { + enable = true; + hidden = false; + extraOptions = [ + "--no-ignore" + "--absolute-path" + "--show-errors" + ]; + }; + }; +}