From a11c8c3488ee26a140973a465cdf58aba97c376b Mon Sep 17 00:00:00 2001 From: s0me1newithhand7s Date: Fri, 29 May 2026 16:31:01 +0300 Subject: [PATCH] feat(hand7s): fd init Signed-off-by: s0me1newithhand7s --- hand7s/programs/fd.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hand7s/programs/fd.nix 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" + ]; + }; + }; +}