Unverified Commit 4c138f6b authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

nixos/locate: exclude by default version control systems and .cache

follows Debian and Ubuntu
parent 087657bb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -157,7 +157,7 @@ in {

    pruneNames = mkOption {
      type = listOf str;
      default = [];
      default = [ ".bzr" ".cache" ".git" ".hg" ".svn" ];
      description = ''
        Directory components which should exclude paths containing them from indexing
      '';