Files
nix-dotfiles/hosts/common/services/locate.nix
2025-05-20 20:57:25 +02:00

18 lines
217 B
Nix

{ pkgs, ... }:
{
services.locate = {
enable = true;
package = pkgs.plocate;
pruneNames = [
".bzr"
".cache"
".git"
".hg"
".svn"
".direnv"
"target"
];
};
}