feat(hand7s): fd init

Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
This commit is contained in:
s0me1newithhand7s 2026-05-29 16:31:01 +03:00
parent fb64c6123b
commit a11c8c3488

13
hand7s/programs/fd.nix Normal file
View file

@ -0,0 +1,13 @@
_: {
programs = {
fd = {
enable = true;
hidden = false;
extraOptions = [
"--no-ignore"
"--absolute-path"
"--show-errors"
];
};
};
}