reNixos/hand7s/programs/fd.nix
s0me1newithhand7s a11c8c3488 feat(hand7s): fd init
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-05-29 16:31:01 +03:00

13 lines
192 B
Nix

_: {
programs = {
fd = {
enable = true;
hidden = false;
extraOptions = [
"--no-ignore"
"--absolute-path"
"--show-errors"
];
};
};
}