aboutsummaryrefslogblamecommitdiff
path: root/users/programs/fd.nix
blob: cdbae66c42040b00d8b785112d834c9301437b17 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                          
{ ... }:
{
  # an alternative to find
  programs.fd = {
    enable = true;
    hidden = true;
    ignores = [
      ".git/"
      ".direnv/"
    ];
  };
}